Questions tagged [emitter]
25 questions
4
votes
1 answer
Spring Web-Flux Server Sent Events is not working when using IP for local and remote calls
I have two simple controllers:
@GetMapping(value = "/simple-get")
public String simpleGet() {
return "simple Get";
}
@GetMapping(path = "/stream-flux", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public Flux streamFlux() {
return…

Taldo
- 103
- 7
4
votes
4 answers
Angular 4 Event Emitter not Emitting
So I have an event emitter working just fine. In my child, I call a function:
(click)="EnterEditMode()
which fires:
EnterEditMode(){
this.enterEdit.emit(null);
}
In my parent, I then:
enterEdit(){
console.log("got some text");
} …

DKinnison
- 355
- 1
- 3
- 16
2
votes
1 answer
Cannot Click UIButton When Particle Emitter Is On Screen
When using a particle emitter, regardless of the position I cannot click the UIButton. If I disable the particle emitter function in viewdidload, I am able to press the UIButton (playButton).
I have tried both zPosition and bringsubviewtofront. I am…

nickreps
- 903
- 8
- 20
2
votes
1 answer
Scaling to "Fit All Columns on One Page" in birt
The report I have developed contains so many columns that they do not fit into the sheet when report gets printed.
I am trying to change its scaling to "Fit All Columns on One Page".
As I understand the way to do this is to set…

lilin
- 29
- 5
2
votes
0 answers
Quill, how to import Emitter?
I'm trying to extend the image function in Quill.
I get an error
Uncaught ReferenceError: Emitter is not defined at FileReader.reader.onload
So I try to import Emitter like this:
var Emitter = Quill.import('core/emitter');
But then I get another…

Brigante
- 1,921
- 6
- 23
- 33
1
vote
1 answer
Communicating using receiver node in webots
I want to implement an emitter robot and a receiver robot in webots. I have written following code.
#include
#include
#include
#include
#define TIME_STEP 64
int main(int argc, char **argv)…

gadjet's garage
- 1
- 4
1
vote
0 answers
What are the typical values for the three inputs to the Driver circuit board of Infrasolid's thermal emitters in Hispower series?
The technical note provided by Infrasolid provides some details. https://www.infrasolid.com/data/doc/Products/HISpower/HISpower-series-technical-note-operating-mode.pdf?c=20211109191000

Ninsi
- 19
- 2
1
vote
1 answer
How to create a little dust trail being left behind the character when running in Phaser
I'm trying to create an arcade platform where some little dust particles are emitted from my character when running. But I still can make it look good, I'm super newbie when it comes to particle emitters, so many variables to change that I'm kinda…

msqar
- 2,940
- 5
- 44
- 90
1
vote
1 answer
RxJS handle multiple database connections
this is the scenario:
I have multiple connection to different databases and i want to be sure that code runs whenever all connections are active.
I am using Rxjs to handle this (another solution is welcome ) but im facing that if i combine the…

Ændri Domi
- 111
- 9
1
vote
1 answer
How to correctly control emissions for defined Scheduler in created Observable
I am using RxJava2 and let's say I have this Observable:
Observable
.create(emitter ->
SomeDependency.registerCallback(data -> emitter.onNext(data))
)
.subscribeOn(Schedulers.io());
It observes some asynchronous logic and then emits…

bakua
- 13,704
- 7
- 43
- 62
0
votes
0 answers
How to use the OpenFaas 'mqtt-publisher' with FaasD
For some basic background we are trying to develop an ADAS application using a serverless framework 'OpenFaas-Faasd'. We currently have a lidar sensor and a sunfounder rpi car as our vehicle. We are also communicating the lidar data to our…

hybrid143
- 1
- 1
0
votes
0 answers
How to play a specific frequency sound?
So I'm trying to find something to help me out but without much luck. I'm trying to click a button and start a specific frequency for example 160hz but can't figure it out yet, if anyone has any experience or can help out with this, please let me…

Kamen Kanchev
- 19
- 4
0
votes
0 answers
How to Store an Emmiter.io received messages in a Variable and send as props
How can I store Message packets received from Emitter.io in a variable and send them as prop to a child component in Vue.js?
Here is the package reference website:
https://emitter.io/develop/javascript/
data() {
return {
channel_data:…

Syed Yousuf
- 1
- 1
0
votes
0 answers
SSemitter work in local but not on server
I am using the SSE emitter to transfer notification events for the spring boot back-end to the the angular front-end. My problem is that this works fine locally on my PC, but no when deploying on a server, the front end doesn't receive anything and…

stevestella
- 3
- 2
0
votes
1 answer
What does it matter if there are many nodejs emitter listeners?
I'm writing a TCP server application using NodeJS. However, each socket runs on a separate child-process (server.on("connection")). To send messages to specific clients, I used Emitter, and each socket generates its own listener (on clientID). So if…

Huy Quoc
- 1
- 2