Uses of Interface
jakarta.jms.Queue
Package
Description
The Jakarta Messaging API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.
-
Uses of Queue in jakarta.jms
Modifier and TypeInterfaceDescriptioninterface
ATemporaryQueue
object is a uniqueQueue
object created for the duration of aConnection
.Modifier and TypeMethodDescriptionJMSContext.createQueue
(String queueName) Creates aQueue
object which encapsulates a specified provider-specific queue name.QueueSession.createQueue
(String queueName) Creates a queue identity given aQueue
name.Session.createQueue
(String queueName) Creates aQueue
object which encapsulates a specified provider-specific queue name.QueueBrowser.getQueue()
Gets the queue associated with this queue browser.QueueReceiver.getQueue()
Gets theQueue
associated with this queue receiver.QueueSender.getQueue()
Gets the queue associated with thisQueueSender
.Modifier and TypeMethodDescriptionJMSContext.createBrowser
(Queue queue) Creates aQueueBrowser
object to peek at the messages on the specified queue.JMSContext.createBrowser
(Queue queue, String messageSelector) Creates aQueueBrowser
object to peek at the messages on the specified queue using a message selector.QueueSession.createBrowser
(Queue queue) Creates aQueueBrowser
object to peek at the messages on the specified queue.QueueSession.createBrowser
(Queue queue, String messageSelector) Creates aQueueBrowser
object to peek at the messages on the specified queue using a message selector.Session.createBrowser
(Queue queue) Creates aQueueBrowser
object to peek at the messages on the specified queue.Session.createBrowser
(Queue queue, String messageSelector) Creates aQueueBrowser
object to peek at the messages on the specified queue using a message selector.QueueConnection.createConnectionConsumer
(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages) Creates a connection consumer for this connection (optional operation).QueueSession.createReceiver
(Queue queue) Creates aQueueReceiver
object to receive messages from the specified queue.QueueSession.createReceiver
(Queue queue, String messageSelector) Creates aQueueReceiver
object to receive messages from the specified queue using a message selector.QueueSession.createSender
(Queue queue) Creates aQueueSender
object to send messages to the specified queue.void
Sends a message to a queue for an unidentified message producer.void
Sends a message to a queue for an unidentified message producer, specifying delivery mode, priority and time to live.ModifierConstructorDescriptionQueueRequestor
(QueueSession session, Queue queue) Constructor for theQueueRequestor
class.