Uses of Interface
javax.jms.Destination

Uses of Destination in javax.jms
 

Subinterfaces of Destination in javax.jms
 interface Queue
           
 interface TemporaryQueue
           
 interface TemporaryTopic
           
 interface Topic
           
 

Methods in javax.jms that return Destination
 Destination Message.getJMSReplyTo()
           
 Destination Message.getJMSDestination()
           
 Destination MessageProducer.getDestination()
           
 

Methods in javax.jms with parameters of type Destination
 ConnectionConsumer Connection.createConnectionConsumer(Destination destination, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)
           
 void Message.setJMSReplyTo(Destination replyTo)
           
 void Message.setJMSDestination(Destination destination)
           
 void MessageProducer.send(Destination destination, Message message)
           
 void MessageProducer.send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive)
           
 MessageProducer Session.createProducer(Destination destination)
           
 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)