Uses of Interface
jakarta.jms.Destination
Packages that use Destination
Package
Description
-
Uses of Destination in jakarta.jms
Subinterfaces of Destination in jakarta.jmsModifier and TypeInterfaceDescriptioninterfaceAQueueobject encapsulates a provider-specific queue name.interfaceATemporaryQueueobject is a uniqueQueueobject created for the duration of aConnection.interfaceATemporaryTopicobject is a uniqueTopicobject created for the duration of aConnection.interfaceATopicobject encapsulates a provider-specific topic name.Methods in jakarta.jms that return DestinationModifier and TypeMethodDescriptionMessageProducer.getDestination()Gets the destination associated with thisMessageProducer.Message.getJMSDestination()Gets theDestinationobject for this message.JMSProducer.getJMSReplyTo()Returns theJMSReplyToheader value that has been set on thisJMSProducer.Message.getJMSReplyTo()Gets theDestinationobject to which a reply to this message should be sent.Methods in jakarta.jms with parameters of type DestinationModifier and TypeMethodDescriptionConnection.createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages) Creates a connection consumer for this connection (optional operation) on the specific destination.JMSContext.createConsumer(Destination destination) Creates aJMSConsumerfor the specified destination.JMSContext.createConsumer(Destination destination, String messageSelector) Creates aJMSConsumerfor the specified destination, using a message selector.JMSContext.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aJMSConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.Session.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.Session.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.Session.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.Session.createProducer(Destination destination) Creates aMessageProducerto send messages to the specified destination.JMSProducer.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.JMSProducer.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.JMSProducer.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.JMSProducer.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.JMSProducer.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.JMSProducer.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 -
Uses of Destination in org.apache.activemq.artemis.jms.bridge.impl
Methods in org.apache.activemq.artemis.jms.bridge.impl that return Destination -
Uses of Destination in org.apache.activemq.artemis.jms.client
Classes in org.apache.activemq.artemis.jms.client that implement DestinationModifier and TypeClassDescriptionclassActiveMQ Artemis implementation of a JMS Destination.classActiveMQ Artemis implementation of a JMS Queue.classActiveMQ Artemis implementation of a JMS TemporaryQueue.classclassActiveMQ Artemis implementation of a JMS Topic.Fields in org.apache.activemq.artemis.jms.client declared as DestinationMethods in org.apache.activemq.artemis.jms.client that return DestinationModifier and TypeMethodDescriptionstatic DestinationActiveMQDestination.fromPrefixed1XName(String addr, String name) ActiveMQMessageProducer.getDestination()ActiveMQMessage.getJMSDestination()ActiveMQJMSProducer.getJMSReplyTo()ActiveMQMessage.getJMSReplyTo()Methods in org.apache.activemq.artemis.jms.client with parameters of type DestinationModifier and TypeMethodDescriptionActiveMQConnection.createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages) ActiveMQJMSContext.createConsumer(Destination destination) ActiveMQJMSContext.createConsumer(Destination destination, String messageSelector) ActiveMQJMSContext.createConsumer(Destination destination, String messageSelector, boolean noLocal) ActiveMQSession.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.ActiveMQSession.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.ActiveMQSession.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.ActiveMQSession.createProducer(Destination destination) Creates aMessageProducerto send messages to the specified destination.static StringActiveMQMessage.prefixOf(Destination dest) ActiveMQJMSProducer.send(Destination destination, byte[] body) ActiveMQJMSProducer.send(Destination destination, Message message) ActiveMQJMSProducer.send(Destination destination, Serializable body) ActiveMQJMSProducer.send(Destination destination, String body) ActiveMQJMSProducer.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) ActiveMQJMSProducer.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 DestinationModifier and TypeMethodDescriptionActiveMQBytesCompatibleMessage.getJMSReplyTo()ActiveMQCompatibleMessage.getJMSReplyTo()ActiveMQMapCompatibleMessage.getJMSReplyTo()ActiveMQObjectCompatibleMessage.getJMSReplyTo()ActiveMQStreamCompatibleMessage.getJMSReplyTo()ActiveMQTextCompatibleMessage.getJMSReplyTo()Methods in org.apache.activemq.artemis.jms.client.compatible1X with parameters of type DestinationModifier and TypeMethodDescriptionvoidActiveMQBytesCompatibleMessage.setJMSReplyTo(Destination dest) voidActiveMQCompatibleMessage.setJMSReplyTo(Destination dest) voidActiveMQMapCompatibleMessage.setJMSReplyTo(Destination dest) voidActiveMQObjectCompatibleMessage.setJMSReplyTo(Destination dest) voidActiveMQStreamCompatibleMessage.setJMSReplyTo(Destination dest) voidActiveMQTextCompatibleMessage.setJMSReplyTo(Destination dest) -
Uses of Destination in org.apache.activemq.artemis.ra
Methods in org.apache.activemq.artemis.ra that return DestinationModifier and TypeMethodDescriptionActiveMQRAMessageProducer.getDestination()Gets the destination associated with thisMessageProducer.ActiveMQRAMessage.getJMSDestination()Gets theDestinationobject for this message.ActiveMQRAMessage.getJMSReplyTo()Gets theDestinationobject to which a reply to this message should be sent.Methods in org.apache.activemq.artemis.ra with parameters of type DestinationModifier and TypeMethodDescriptionActiveMQRASessionFactoryImpl.createConnectionConsumer(Destination destination, ServerSessionPool pool, int maxMessages) ActiveMQRASessionFactoryImpl.createConnectionConsumer(Destination destination, String name, ServerSessionPool pool, int maxMessages) Creates a connection consumer for this connection (optional operation) on the specific destination.ActiveMQRASession.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.ActiveMQRASession.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.ActiveMQRASession.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.ActiveMQRASession.createProducer(Destination destination) Creates aMessageProducerto send messages to the specified destination.voidActiveMQRAMessageProducer.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.voidActiveMQRAMessageProducer.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.voidActiveMQRAMessageProducer.send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener) voidActiveMQRAMessageProducer.send(Destination destination, Message message, CompletionListener completionListener) voidActiveMQRAMessage.setJMSDestination(Destination destination) Sets theDestinationobject for this message.voidActiveMQRAMessage.setJMSReplyTo(Destination replyTo) Sets theDestinationobject to which a reply to this message should be sent.