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.?
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![]()
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.?
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.
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
Thank you.!