Re: [Txamqp-user] How do you listen to different queues asynchronously?

2009-11-17 Thread Ale
Hi Esteve, 2009/11/17 Esteve Fernandez esteve.fernan...@gmail.com: and then, when the user quits the application, put the STOP_TOKEN object in the queue:    queue.put(STOP_TOKEN) remember that when you call queue() on a channel instance, you get an instance of DeferredQueue

Re: [Txamqp-user] How do you listen to different queues asynchronously?

2009-11-17 Thread Terry Jones
Esteve == Esteve Fernandez esteve.fernan...@gmail.com writes: Esteve there's probably something I'm missing here, but why are you Esteve defining a function and attaching it to an errback if you're Esteve already using inlineCallbacks? This looks cleaner to me: I wasn't understanding Ale's