Uses of Interface
jakarta.jms.Queue
-
Packages that use Queue Package Description jakarta.jms The Jakarta Messaging API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.org.apache.activemq.artemis.api.jms org.apache.activemq.artemis.jms.client org.apache.activemq.artemis.jndi -
-
Uses of Queue in jakarta.jms
Subinterfaces of Queue in jakarta.jms Modifier and Type Interface Description interfaceTemporaryQueueATemporaryQueueobject is a uniqueQueueobject created for the duration of aConnection.Methods in jakarta.jms that return Queue Modifier and Type Method Description QueueJMSContext. createQueue(String queueName)Creates aQueueobject which encapsulates a specified provider-specific queue name.QueueQueueSession. createQueue(String queueName)Creates a queue identity given aQueuename.QueueSession. createQueue(String queueName)Creates aQueueobject which encapsulates a specified provider-specific queue name.QueueQueueBrowser. getQueue()Gets the queue associated with this queue browser.QueueQueueReceiver. getQueue()Gets theQueueassociated with this queue receiver.QueueQueueSender. getQueue()Gets the queue associated with thisQueueSender.Methods in jakarta.jms with parameters of type Queue Modifier and Type Method Description QueueBrowserJMSContext. createBrowser(Queue queue)Creates aQueueBrowserobject to peek at the messages on the specified queue.QueueBrowserJMSContext. createBrowser(Queue queue, String messageSelector)Creates aQueueBrowserobject to peek at the messages on the specified queue using a message selector.QueueBrowserQueueSession. createBrowser(Queue queue)Creates aQueueBrowserobject to peek at the messages on the specified queue.QueueBrowserQueueSession. createBrowser(Queue queue, String messageSelector)Creates aQueueBrowserobject to peek at the messages on the specified queue using a message selector.QueueBrowserSession. createBrowser(Queue queue)Creates aQueueBrowserobject to peek at the messages on the specified queue.QueueBrowserSession. createBrowser(Queue queue, String messageSelector)Creates aQueueBrowserobject to peek at the messages on the specified queue using a message selector.ConnectionConsumerQueueConnection. createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation).QueueReceiverQueueSession. createReceiver(Queue queue)Creates aQueueReceiverobject to receive messages from the specified queue.QueueReceiverQueueSession. createReceiver(Queue queue, String messageSelector)Creates aQueueReceiverobject to receive messages from the specified queue using a message selector.QueueSenderQueueSession. createSender(Queue queue)Creates aQueueSenderobject to send messages to the specified queue.voidQueueSender. send(Queue queue, Message message)Sends a message to a queue for an unidentified message producer.voidQueueSender. 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.Constructors in jakarta.jms with parameters of type Queue Constructor Description QueueRequestor(QueueSession session, Queue queue)Constructor for theQueueRequestorclass. -
Uses of Queue in org.apache.activemq.artemis.api.jms
Methods in org.apache.activemq.artemis.api.jms that return Queue Modifier and Type Method Description static QueueActiveMQJMSClient. createQueue(String name)Deprecated. -
Uses of Queue in org.apache.activemq.artemis.jms.client
Classes in org.apache.activemq.artemis.jms.client that implement Queue Modifier and Type Class Description classActiveMQQueueActiveMQ Artemis implementation of a JMS Queue.classActiveMQTemporaryQueueActiveMQ Artemis implementation of a JMS TemporaryQueue.Methods in org.apache.activemq.artemis.jms.client that return Queue Modifier and Type Method Description QueueActiveMQJMSContext. createQueue(String queueName)QueueActiveMQSession. createQueue(String queueName)QueueActiveMQMessageConsumer. getQueue()QueueActiveMQMessageProducer. getQueue()QueueActiveMQQueueBrowser. getQueue()protected QueueActiveMQSession. internalCreateQueue(String queueName)Methods in org.apache.activemq.artemis.jms.client with parameters of type Queue Modifier and Type Method Description QueueBrowserActiveMQJMSContext. createBrowser(Queue queue)QueueBrowserActiveMQJMSContext. createBrowser(Queue queue, String messageSelector)QueueBrowserActiveMQSession. createBrowser(Queue queue)QueueBrowserActiveMQSession. createBrowser(Queue queue, String filterString)ConnectionConsumerActiveMQConnection. createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)QueueReceiverActiveMQSession. createReceiver(Queue queue)QueueReceiverActiveMQSession. createReceiver(Queue queue, String messageSelector)QueueSenderActiveMQSession. createSender(Queue queue)voidActiveMQMessageProducer. send(Queue queue, Message message)voidActiveMQMessageProducer. send(Queue queue, Message message, int deliveryMode, int priority, long timeToLive) -
Uses of Queue in org.apache.activemq.artemis.jndi
Methods in org.apache.activemq.artemis.jndi that return Queue Modifier and Type Method Description protected QueueActiveMQInitialContextFactory. createQueue(String name)Factory method to create new Queue instances
-