Uses of Interface
javax.jms.Destination
-
-
Uses of Destination in javax.jms
Subinterfaces of Destination in javax.jms Modifier and Type Interface Description interface
Queue
interface
TemporaryQueue
interface
TemporaryTopic
interface
Topic
Methods in javax.jms that return Destination Modifier and Type Method Description Destination
MessageProducer. getDestination()
Destination
Message. getJMSDestination()
Destination
Message. getJMSReplyTo()
Methods in javax.jms with parameters of type Destination Modifier and Type Method Description ConnectionConsumer
Connection. createConnectionConsumer(Destination destination, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)
MessageConsumer
Session. createConsumer(Destination destination)
MessageConsumer
Session. createConsumer(Destination destination, java.lang.String messageSelector)
MessageConsumer
Session. createConsumer(Destination destination, java.lang.String messageSelector, boolean NoLocal)
MessageProducer
Session. createProducer(Destination destination)
void
MessageProducer. send(Destination destination, Message message)
void
MessageProducer. send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive)
void
Message. setJMSDestination(Destination destination)
void
Message. setJMSReplyTo(Destination replyTo)
-