How does Priority Queue in RabbitMQ works?

156 views Asked by At

I want to implement 3 queues Q1, Q2 and Q3 with different priorities. Q1 > Q2 > Q3 for priority. I am expecting that if I add 5 objects in Q3 and while processing them if new object is added to Q1 then instead of picking next item from Q3 it should pick up item in Q1. Does RabbitMQ support such behavior ? Can you give some pointer about how to implement this ?

0

There are 0 answers