QueueBrowser |
JMSContext.createBrowser(Queue queue) |
Creates a QueueBrowser object to peek at the messages on the specified queue.
|
QueueBrowser |
JMSContext.createBrowser(Queue queue,
String messageSelector) |
Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
|
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.
|
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.
|
ConnectionConsumer |
QueueConnection.createConnectionConsumer(Queue queue,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Creates a connection consumer for this connection (optional operation).
|
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.
|
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.
|