Uses of Interface
jakarta.jms.Destination
-
Packages that use Destination 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.jms.bridge org.apache.activemq.artemis.jms.bridge.impl org.apache.activemq.artemis.jms.client org.apache.activemq.artemis.jms.client.compatible1X -
-
Uses of Destination in jakarta.jms
Subinterfaces of Destination in jakarta.jms Modifier and Type Interface Description interfaceQueueAQueueobject encapsulates a provider-specific queue name.interfaceTemporaryQueueATemporaryQueueobject is a uniqueQueueobject created for the duration of aConnection.interfaceTemporaryTopicATemporaryTopicobject is a uniqueTopicobject created for the duration of aConnection.interfaceTopicATopicobject encapsulates a provider-specific topic name.Methods in jakarta.jms that return Destination Modifier and Type Method Description DestinationMessageProducer. getDestination()Gets the destination associated with thisMessageProducer.DestinationMessage. getJMSDestination()Gets theDestinationobject for this message.DestinationJMSProducer. getJMSReplyTo()Returns theJMSReplyToheader value that has been set on thisJMSProducer.DestinationMessage. getJMSReplyTo()Gets theDestinationobject to which a reply to this message should be sent.Methods in jakarta.jms with parameters of type Destination Modifier and Type Method Description ConnectionConsumerConnection. createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation) on the specific destination.JMSConsumerJMSContext. createConsumer(Destination destination)Creates aJMSConsumerfor the specified destination.JMSConsumerJMSContext. createConsumer(Destination destination, String messageSelector)Creates aJMSConsumerfor the specified destination, using a message selector.JMSConsumerJMSContext. createConsumer(Destination destination, String messageSelector, boolean noLocal)Creates aJMSConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.MessageConsumerSession. createConsumer(Destination destination)Creates aMessageConsumerfor the specified destination.MessageConsumerSession. createConsumer(Destination destination, String messageSelector)Creates aMessageConsumerfor the specified destination, using a message selector.MessageConsumerSession. createConsumer(Destination destination, String messageSelector, boolean noLocal)Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.MessageProducerSession. createProducer(Destination destination)Creates aMessageProducerto send messages to the specified destination.JMSProducerJMSProducer. send(Destination destination, byte[] body)Send aBytesMessagewith the specified body to the specified destination, using any send options, message properties and message headers that have been defined on thisJMSProducer.JMSProducerJMSProducer. send(Destination destination, Message message)Sends a message to the specified destination, using any send options, message properties and message headers that have been defined on thisJMSProducer.JMSProducerJMSProducer. send(Destination destination, Serializable body)Send anObjectMessagewith the specified body to the specified destination, using any send options, message properties and message headers that have been defined on thisJMSProducer.JMSProducerJMSProducer. send(Destination destination, String body)Send aTextMessagewith the specified body to the specified destination, using any send options, message properties and message headers that have been defined on thisJMSProducer.JMSProducerJMSProducer. send(Destination destination, Map<String,Object> body)Send aMapMessagewith the specified body to the specified destination, using any send options, message properties and message headers that have been defined on thisJMSProducer.voidMessageProducer. send(Destination destination, Message message)Sends a message to a destination for an unidentified message producer using theMessageProducer's default delivery mode, priority, and time to live.voidMessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive)Sends a message to a destination for an unidentified message producer, specifying delivery mode, priority and time to live.voidMessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener)Sends a message to a destination for an unidentified message producer, specifying delivery mode, priority and time to live, performing part of the work involved in sending the message in a separate thread and notifying the specified CompletionListener when the operation has completed.voidMessageProducer. send(Destination destination, Message message, CompletionListener completionListener)Sends a message to a destination for an unidentified message producer, using theMessageProducer's default delivery mode, priority, and time to live, performing part of the work involved in sending the message in a separate thread and notifying the specified CompletionListener when the operation has completed.voidMessage. setJMSDestination(Destination destination)Sets theDestinationobject for this message.JMSProducerJMSProducer. setJMSReplyTo(Destination replyTo)Specifies that messages sent using thisJMSProducerwill have theirJMSReplyToheader value set to the specifiedDestinationobject.voidMessage. setJMSReplyTo(Destination replyTo)Sets theDestinationobject to which a reply to this message should be sent. -
Uses of Destination in org.apache.activemq.artemis.jms.bridge
Methods in org.apache.activemq.artemis.jms.bridge that return Destination Modifier and Type Method Description DestinationDestinationFactory. createDestination() -
Uses of Destination in org.apache.activemq.artemis.jms.bridge.impl
Methods in org.apache.activemq.artemis.jms.bridge.impl that return Destination Modifier and Type Method Description DestinationJNDIDestinationFactory. createDestination() -
Uses of Destination in org.apache.activemq.artemis.jms.client
Classes in org.apache.activemq.artemis.jms.client that implement Destination Modifier and Type Class Description classActiveMQDestinationActiveMQ Artemis implementation of a JMS Destination.classActiveMQQueueActiveMQ Artemis implementation of a JMS Queue.classActiveMQTemporaryQueueActiveMQ Artemis implementation of a JMS TemporaryQueue.classActiveMQTemporaryTopicclassActiveMQTopicActiveMQ Artemis implementation of a JMS Topic.Fields in org.apache.activemq.artemis.jms.client declared as Destination Modifier and Type Field Description protected DestinationActiveMQMessage. replyToMethods in org.apache.activemq.artemis.jms.client that return Destination Modifier and Type Method Description static DestinationActiveMQDestination. fromPrefixed1XName(String addr, String name)DestinationActiveMQMessageProducer. getDestination()DestinationActiveMQMessage. getJMSDestination()DestinationActiveMQJMSProducer. getJMSReplyTo()DestinationActiveMQMessage. getJMSReplyTo()Methods in org.apache.activemq.artemis.jms.client with parameters of type Destination Modifier and Type Method Description ConnectionConsumerActiveMQConnection. createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)JMSConsumerActiveMQJMSContext. createConsumer(Destination destination)JMSConsumerActiveMQJMSContext. createConsumer(Destination destination, String messageSelector)JMSConsumerActiveMQJMSContext. createConsumer(Destination destination, String messageSelector, boolean noLocal)MessageConsumerActiveMQSession. createConsumer(Destination destination)MessageConsumerActiveMQSession. createConsumer(Destination destination, String messageSelector)MessageConsumerActiveMQSession. createConsumer(Destination destination, String messageSelector, boolean noLocal)MessageProducerActiveMQSession. createProducer(Destination destination)static StringActiveMQMessage. prefixOf(Destination dest)JMSProducerActiveMQJMSProducer. send(Destination destination, byte[] body)JMSProducerActiveMQJMSProducer. send(Destination destination, Message message)JMSProducerActiveMQJMSProducer. send(Destination destination, Serializable body)JMSProducerActiveMQJMSProducer. send(Destination destination, String body)JMSProducerActiveMQJMSProducer. send(Destination destination, Map<String,Object> body)voidActiveMQMessageProducer. send(Destination destination, Message message)voidActiveMQMessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive)voidActiveMQMessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener)voidActiveMQMessageProducer. send(Destination destination, Message message, CompletionListener completionListener)voidActiveMQMessage. setJMSDestination(Destination destination)JMSProducerActiveMQJMSProducer. setJMSReplyTo(Destination replyTo)voidActiveMQMessage. setJMSReplyTo(Destination dest) -
Uses of Destination in org.apache.activemq.artemis.jms.client.compatible1X
Methods in org.apache.activemq.artemis.jms.client.compatible1X that return Destination Modifier and Type Method Description DestinationActiveMQBytesCompatibleMessage. getJMSReplyTo()DestinationActiveMQCompatibleMessage. getJMSReplyTo()DestinationActiveMQMapCompatibleMessage. getJMSReplyTo()DestinationActiveMQObjectCompatibleMessage. getJMSReplyTo()DestinationActiveMQStreamCompatibleMessage. getJMSReplyTo()DestinationActiveMQTextCompatibleMessage. getJMSReplyTo()Methods in org.apache.activemq.artemis.jms.client.compatible1X with parameters of type Destination Modifier and Type Method Description voidActiveMQBytesCompatibleMessage. setJMSReplyTo(Destination dest)voidActiveMQCompatibleMessage. setJMSReplyTo(Destination dest)voidActiveMQMapCompatibleMessage. setJMSReplyTo(Destination dest)voidActiveMQObjectCompatibleMessage. setJMSReplyTo(Destination dest)voidActiveMQStreamCompatibleMessage. setJMSReplyTo(Destination dest)voidActiveMQTextCompatibleMessage. setJMSReplyTo(Destination dest)
-