Reputation: 1417
I am new to RabbitMQ, I have tried RabbitMQ samples using the tutorials https://www.rabbitmq.com/getstarted.html.
Could anyone please explain about to how to publish messages as set instead of single message at a time. Also how to subscribe message from Queue as a set instead of single message at a time.
Meaning that, how can we achieve publish and consume queue messages as Job set in RabbitMQ?
Thanks in advance.
Upvotes: 0
Views: 133
Reputation: 35149
There is no way to achieve what you described without writing your own logic.
By your own logic I mean few options:
Upvotes: 1