Definition of exclusive queues:
exclusive
specifies that only one consumer can receive a message at any one time, while additional consumers may be connected as standby. That is, only one Flow can be active. Only the first consumer to bind can receive messages. If the first consumer disconnects, the second consumer receives data, and so on. An exclusive queue always delivers messages in the order they are received.
When I start the second instance of consumer, it will throw max clients exceeded error(as the bind count is 1). But It should connect and remain as stand by right! or should we not create another flow to this queue? How does it work?
Or how do I check whether the queue is already bound to another client, before I create a new flow?