Uses of Interface
javax.jms.Queue

Packages that use Queue
javax.jms   
 

Uses of Queue in javax.jms
 

Subinterfaces of Queue in javax.jms
 interface TemporaryQueue
          A TemporaryQueue is a unique Queue object created for the duration of a QueueConnection.
 

Fields in javax.jms declared as Queue
(package private)  Queue QueueRequestor.queue
           
 

Methods in javax.jms that return Queue
 Queue QueueBrowser.getQueue()
          Get the queue associated with this queue browser.
 Queue QueueReceiver.getQueue()
          Get the queue associated with this queue receiver.
 Queue QueueSession.createQueue(String queueName)
          Create a queue identity given a Queue name.
 Queue QueueSender.getQueue()
          Get the queue associated with this queue sender.
 

Methods in javax.jms with parameters of type Queue
 ConnectionConsumer QueueConnection.createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
          Create a connection consumer for this connection (optional operation).
 QueueReceiver QueueSession.createReceiver(Queue queue)
          Create a QueueReceiver to receive messages from the specified queue.
 QueueReceiver QueueSession.createReceiver(Queue queue, String messageSelector)
          Create a QueueReceiver to receive messages from the specified queue.
 QueueSender QueueSession.createSender(Queue queue)
          Create a QueueSender to send messages to the specified queue.
 QueueBrowser QueueSession.createBrowser(Queue queue)
          Create a QueueBrowser to peek at the messages on the specified queue.
 QueueBrowser QueueSession.createBrowser(Queue queue, String messageSelector)
          Create a QueueBrowser to peek at the messages on the specified queue.
 void QueueSender.send(Queue queue, Message message)
          Send a message to a queue for an unidentified message producer.
 void QueueSender.send(Queue queue, Message message, int deliveryMode, int priority, long timeToLive)
          Send a message to a queue for an unidentified message producer, specifying delivery mode, priority and time to live.
 

Constructors in javax.jms with parameters of type Queue
QueueRequestor(QueueSession session, Queue queue)
          Constructor for the QueueRequestor class.