ConnectionConsumer |
Connection.createConnectionConsumer(Destination destination,
java.lang.String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Creates a connection consumer for this connection (optional operation).
|
MessageConsumer |
Session.createConsumer(Destination destination) |
Creates a MessageConsumer for the specified destination.
|
MessageConsumer |
Session.createConsumer(Destination destination,
java.lang.String messageSelector) |
Creates a MessageConsumer for the specified destination,
using a message selector.
|
MessageConsumer |
Session.createConsumer(Destination destination,
java.lang.String messageSelector,
boolean NoLocal) |
Creates MessageConsumer for the specified destination, using a
message selector.
|
MessageProducer |
Session.createProducer(Destination destination) |
Creates a MessageProducer to send messages to the specified
destination.
|
void |
MessageProducer.send(Destination destination,
Message message) |
Sends a message to a destination for an unidentified message producer.
|
void |
MessageProducer.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.
|
void |
Message.setJMSDestination(Destination destination) |
Sets the Destination object for this message.
|
void |
Message.setJMSReplyTo(Destination replyTo) |
Sets the Destination object to which a reply to this
message should be sent.
|