If I have the following configuration to listen queue1,queue2,queue3, if all queues have messsage, what's the order of message consumes? first consume all of queue1 or in round robin fashion?
<rabbit:listener-container id="connectListenerContainer" connection-factory="connectionFactory" prefetch="1" concurrency="1">
<rabbit:listener ref="keyRequestListener" queues="queue1,queue2,queue3" />
</rabbit:listener-container>