Uses of Interface
jakarta.jms.CompletionListener
-
Packages that use CompletionListener 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.client -
-
Uses of CompletionListener in jakarta.jms
Methods in jakarta.jms that return CompletionListener Modifier and Type Method Description CompletionListenerJMSProducer. getAsync()If subsequent calls tosendon thisJMSProducerobject have been configured to be asynchronous then this method returns theCompletionListenerthat has previously been configured.Methods in jakarta.jms with parameters of type CompletionListener Modifier and Type Method Description 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.voidMessageProducer. send(Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener)Sends a message, 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(Message message, CompletionListener completionListener)Sends a message 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.JMSProducerJMSProducer. setAsync(CompletionListener completionListener)Specifies whether subsequent calls tosendon thisJMSProducerobject should be synchronous or asynchronous. -
Uses of CompletionListener in org.apache.activemq.artemis.jms.client
Methods in org.apache.activemq.artemis.jms.client that return CompletionListener Modifier and Type Method Description CompletionListenerActiveMQJMSProducer. getAsync()Methods in org.apache.activemq.artemis.jms.client with parameters of type CompletionListener Modifier and Type Method Description voidActiveMQMessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener)voidActiveMQMessageProducer. send(Destination destination, Message message, CompletionListener completionListener)voidActiveMQMessageProducer. send(Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener)voidActiveMQMessageProducer. send(Message message, CompletionListener completionListener)JMSProducerActiveMQJMSProducer. setAsync(CompletionListener completionListener)
-