10-15-2013 01:18 AM
Curiously asking, can we enqueue notifications or Can we Notify queues..? What if we use notifier as data type for queues or the other way around.?
10-15-2013 01:29 AM
When you use obtain queue or obtain notifier function you get a reference to that queue or notifier.
using this reference as a data type you can obtain the new queue or notifier
10-15-2013 01:44 AM
Technically yes, but for what?
10-15-2013 01:50 AM
Technically yes, but for what?
He is curious
10-15-2013 03:15 AM
Yes Neos, I was just curious & what if I want to notify to so many parallel loops but still dont want to lose any data or event at any cost.?
10-15-2013 03:21 AM
Notifiers are lossy in nature.
Use queues if you dont want to lose any data
10-15-2013 03:28 AM
Exactly, queues are neat.! But I cannot run more than 1 consumer. I have more than 1 consumers. I want to run all of them like notifier does & without losing any data.
10-15-2013 03:49 AM
if your multiple consumer needs data from same producers use multiple queues and if consumers needs to send responce to producer user events are your friend.
using different queue per consumer will give you ability to send different commands to different consumers and easy to maintain also
10-15-2013 03:58 AM
Use User Events. You can queue them AND have multiple listeners.
10-15-2013 05:03 AM
Thank you.!