-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One Publisher -> Many Subscribers #213
Comments
Yes, that's exactly how it works. |
I currently have a message being published based upon device coordinates. When those coordinates change, a single message is sent. That message has multiple subscribers with the same key value in this case "geoUpdate".
|
are you sure |
Sorry for the delay --- here is a full example of what i'm seeing. My feeling is i'm doing something wrong, but i would appreciate any help! =) `const cote = require('cote'); var buildListener = function(queueName,bindArgs,func){ var publish = function(){ var t1 = function(){buildListener('test1',{'test':'test','woo':'woo'},function(){console.log('test1')});}; ` |
Good afternoon! Just wondering if I can provide any more information? |
Apparently the publisher was creating and sending the message faster than all the listeners could attach. |
Is it possible to have multiple subscribers all receive the same message from a publisher?
The text was updated successfully, but these errors were encountered: