Does AMQ expire/destroy temporary queues ?

2013-08-06 Thread Oleg Dulin
I do a number of request/response type operations where I send a request and I create a temporary queue. What is the lifecyle of a temporary queue ? At what point does it get destroyed ? Any advice is greatly appreciated. -- Regards, Oleg Dulin http://www.olegdulin.com

Re: Does AMQ expire/destroy temporary queues ?

2013-08-06 Thread Gary Tully
a temp destination is tied to the lifecycle of a connection, unless it is destroyed via javax.jms.TemporaryQueue#delete it will be deleted when the connection closes On 6 August 2013 14:52, Oleg Dulin oleg.du...@gmail.com wrote: I do a number of request/response type operations where I send a

Re: Does AMQ expire/destroy temporary queues ?

2013-08-06 Thread Oleg Dulin
Perfect, thank you sir. On 2013-08-06 15:25:16 +, Gary Tully said: a temp destination is tied to the lifecycle of a connection, unless it is destroyed via javax.jms.TemporaryQueue#delete it will be deleted when the connection closes On 6 August 2013 14:52, Oleg Dulin oleg.du...@gmail.com