Package javax.jms
Interface TemporaryQueue
- 
- All Superinterfaces:
- Destination,- Queue
 
 public interface TemporaryQueue extends Queue ATemporaryQueueobject is a uniqueQueueobject created for the duration of aConnection. It is a system-defined queue that can be consumed only by theConnectionthat created it.A TemporaryQueueobject can be created at either theSessionorQueueSessionlevel. Creating it at theSessionlevel allows to theTemporaryQueueto participate in transactions with objects from the Pub/Sub domain. If it is created at theQueueSession, it will only be able participate in transactions with objects from the PTP domain.- Since:
- JMS 1.0
- See Also:
- Session.createTemporaryQueue(),- QueueSession.createTemporaryQueue()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()Deletes this temporary queue.- 
Methods inherited from interface javax.jms.QueuegetQueueName, toString
 
- 
 
- 
- 
- 
Method Detail- 
deletevoid delete() throws JMSExceptionDeletes this temporary queue. If there are existing receivers still using it, aJMSExceptionwill be thrown.- Throws:
- JMSException- if the Jakarta Messaging provider fails to delete the temporary queue due to some internal error.
 
 
- 
 
-