|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Queue | |
javax.jms | This is the basic contract for the Java Message Service - what JBossMQ offers and clients can expect. |
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 | |
Queue |
Session.createQueue(String queueName)
Creates a queue identity given a Queue name. |
Queue |
QueueSession.createQueue(String queueName)
Creates a queue identity given a Queue name. |
Queue |
QueueSender.getQueue()
Gets the queue associated with this QueueSender . |
Queue |
QueueReceiver.getQueue()
Gets the Queue associated with this queue receiver. |
Queue |
QueueBrowser.getQueue()
Gets the queue associated with this queue browser. |
Methods in javax.jms with parameters of type Queue | |
QueueBrowser |
Session.createBrowser(Queue queue)
Creates a QueueBrowser object to peek at the messages on
the specified queue. |
QueueBrowser |
Session.createBrowser(Queue queue,
String messageSelector)
Creates a QueueBrowser object to peek at the messages on
the specified queue using a message selector. |
QueueReceiver |
QueueSession.createReceiver(Queue queue)
Creates a QueueReceiver object to receive messages from the
specified queue. |
QueueReceiver |
QueueSession.createReceiver(Queue queue,
String messageSelector)
Creates a QueueReceiver object to receive messages from the
specified queue using a message selector. |
QueueSender |
QueueSession.createSender(Queue queue)
Creates a QueueSender object to send messages to the
specified queue. |
QueueBrowser |
QueueSession.createBrowser(Queue queue)
Creates a QueueBrowser object to peek at the messages on
the specified queue. |
QueueBrowser |
QueueSession.createBrowser(Queue queue,
String messageSelector)
Creates a QueueBrowser object to peek at the messages on
the specified queue using a message selector. |
void |
QueueSender.send(Queue queue,
Message message)
Sends a message to a queue for an unidentified message producer. |
void |
QueueSender.send(Queue queue,
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. |
ConnectionConsumer |
QueueConnection.createConnectionConsumer(Queue queue,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation). |
Constructors in javax.jms with parameters of type Queue | |
QueueRequestor(QueueSession session,
Queue queue)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |