|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Queue in javax.jms |
Subinterfaces of Queue in javax.jms | |
interface |
TemporaryQueue
A TemporaryQueue object is a unique Queue object
created for the duration of a Connection . |
Methods in javax.jms that return Queue | |
javax.jms.Queue |
QueueBrowser.getQueue()
Gets the queue associated with this queue browser. |
javax.jms.Queue |
QueueReceiver.getQueue()
Gets the Queue associated with this queue receiver. |
javax.jms.Queue |
QueueSender.getQueue()
Gets the queue associated with this QueueSender . |
javax.jms.Queue |
QueueSession.createQueue(String queueName)
Creates a queue identity given a Queue name.
|
javax.jms.Queue |
Session.createQueue(String queueName)
Creates a queue identity given a Queue name.
|
Methods in javax.jms with parameters of type Queue | |
javax.jms.ConnectionConsumer |
QueueConnection.createConnectionConsumer(javax.jms.Queue queue,
String messageSelector,
javax.jms.ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation). |
void |
QueueSender.send(javax.jms.Queue queue,
javax.jms.Message message)
Sends a message to a queue for an unidentified message producer. |
void |
QueueSender.send(javax.jms.Queue queue,
javax.jms.Message message,
int deliveryMode,
int priority,
long timeToLive)
Sends a message to a queue for an unidentified message producer, specifying delivery mode, priority and time to live. |
javax.jms.QueueReceiver |
QueueSession.createReceiver(javax.jms.Queue queue)
Creates a QueueReceiver object to receive messages from the
specified queue. |
javax.jms.QueueReceiver |
QueueSession.createReceiver(javax.jms.Queue queue,
String messageSelector)
Creates a QueueReceiver object to receive messages from the
specified queue using a message selector. |
javax.jms.QueueSender |
QueueSession.createSender(javax.jms.Queue queue)
Creates a QueueSender object to send messages to the
specified queue. |
javax.jms.QueueBrowser |
QueueSession.createBrowser(javax.jms.Queue queue)
Creates a QueueBrowser object to peek at the messages on
the specified queue. |
javax.jms.QueueBrowser |
QueueSession.createBrowser(javax.jms.Queue queue,
String messageSelector)
Creates a QueueBrowser object to peek at the messages on
the specified queue using a message selector. |
javax.jms.QueueBrowser |
Session.createBrowser(javax.jms.Queue queue)
Creates a QueueBrowser object to peek at the messages on
the specified queue. |
javax.jms.QueueBrowser |
Session.createBrowser(javax.jms.Queue queue,
String messageSelector)
Creates a QueueBrowser object to peek at the messages on
the specified queue using a message selector. |
Constructors in javax.jms with parameters of type Queue | |
QueueRequestor(javax.jms.QueueSession session,
javax.jms.Queue queue)
Constructor for the QueueRequestor class.
|
|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |