Fantastic tutorials, the whole series! I love how you alternate between theory and practical! Keep up the good work!
@jumpstartCS3 ай бұрын
Thanks for watching and your kind comment!
@akshaynitin5589 Жыл бұрын
rocking tutorial
@jumpstartCS Жыл бұрын
Thanks! Glad you enjoyed the tutorial and thanks for the support!
@aamirjamal68333 жыл бұрын
Thanks for the videos. I have a question. Can 2 different queues have a single consumer? And if yes, how can we achieve that?
@jumpstartCS3 жыл бұрын
Hi Aamir Jamal, thanks for the question. This is indeed possible. If your referring to a consumer as an application or service that needs to get messages from both queues then you could achieve this as follows. Call BasicConsume twice (once for each queue) you can use the same EventingBasicConsumer for both queues or a different one if you wish. Then process the messages however your application deems nessesary.
@abhinay4200 Жыл бұрын
sending to both does not work because ack is set to true , so the message is removed from queue ;after the first consumer processes it
@VirussPL Жыл бұрын
As you can see on the video, it worked fine, because those are separate queues, each of them having only one consumer, and message being sent to both of the queues ;-)