|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Destination in javax.jms |
Subinterfaces of Destination in javax.jms | |
interface |
Queue
A Queue object encapsulates a provider-specific queue name.
|
interface |
TemporaryQueue
A TemporaryQueue object is a unique Queue object
created for the duration of a Connection . |
interface |
TemporaryTopic
A TemporaryTopic object is a unique Topic object
created for the duration of a Connection . |
interface |
Topic
A Topic object encapsulates a provider-specific topic name.
|
Methods in javax.jms that return Destination | |
javax.jms.Destination |
Message.getJMSReplyTo()
Gets the Destination object to which a reply to this
message should be sent. |
javax.jms.Destination |
Message.getJMSDestination()
Gets the Destination object for this message.
|
javax.jms.Destination |
MessageProducer.getDestination()
Gets the destination associated with this MessageProducer . |
Methods in javax.jms with parameters of type Destination | |
javax.jms.ConnectionConsumer |
Connection.createConnectionConsumer(javax.jms.Destination destination,
String messageSelector,
javax.jms.ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation). |
void |
Message.setJMSReplyTo(javax.jms.Destination replyTo)
Sets the Destination object to which a reply to this
message should be sent.
|
void |
Message.setJMSDestination(javax.jms.Destination destination)
Sets the Destination object for this message.
|
void |
MessageProducer.send(javax.jms.Destination destination,
javax.jms.Message message)
Sends a message to a destination for an unidentified message producer. |
void |
MessageProducer.send(javax.jms.Destination destination,
javax.jms.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. |
javax.jms.MessageProducer |
Session.createProducer(javax.jms.Destination destination)
Creates a MessageProducer to send messages to the specified
destination.
|
javax.jms.MessageConsumer |
Session.createConsumer(javax.jms.Destination destination)
Creates a MessageConsumer for the specified destination.
|
javax.jms.MessageConsumer |
Session.createConsumer(javax.jms.Destination destination,
String messageSelector)
Creates a MessageConsumer for the specified destination,
using a message selector.
|
javax.jms.MessageConsumer |
Session.createConsumer(javax.jms.Destination destination,
String messageSelector,
boolean NoLocal)
Creates MessageConsumer for the specified destination, using a
message selector. |
|
JMS 1.1 API Specification |
|||||||||
PREV NEXT | FRAMES NO FRAMES |