Hi,<br><br>I&#39;m wondering if I&#39;m wandering the right path here. (I&#39;m using 1.6.0 with erlang client.)<br><br>I was intending to use a basic.publish with mandatory and immediate set to true, and a return handler to allow me to add new workers reading from a queue.<br>
<br>I create a work queue with a return handler and a reply queue. I also create one initial worker, subscribing to the work queue with no_ack set to false.<br><br>I then publish a work message onto the work queue and the worker picks it up, does the work and publishes the answer back into the reply queue.<br>
<br>My intention was that my work message publish uses the immediate flag to generate a basic.return if the message cannot be immediately delivered. I thought that if my worker is busy it won&#39;t get the next message, leading to the basic.return. But I believe my thinking is wrong. It looks like the second work message is routed to the initial work consumer immediately, even if it is still busy.<br>
<br>Have I overlooked something obvious, or would I need to implement a 1 message flow control on the channel that the work consumer is using?<br><br>Thanks for any pointers,<br>Robby<br><br>