ConnectionConsumer |
Connection.createConnectionConsumer(Destination destination,
java.lang.String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
Creates a connection consumer for this connection (optional operation)
on the specific destination.
|
JMSConsumer |
JMSContext.createConsumer(Destination destination) |
Creates a JMSConsumer for the specified destination.
|
JMSConsumer |
JMSContext.createConsumer(Destination destination,
java.lang.String messageSelector) |
Creates a JMSConsumer for the specified destination, using a
message selector.
|
JMSConsumer |
JMSContext.createConsumer(Destination destination,
java.lang.String messageSelector,
boolean noLocal) |
Creates a JMSConsumer for the specified destination,
specifying a message selector and the noLocal parameter.
|
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 a MessageConsumer for the specified destination, specifying a
message selector and the noLocal parameter.
|
MessageProducer |
Session.createProducer(Destination destination) |
Creates a MessageProducer to send messages to the specified
destination.
|
JMSProducer |
JMSProducer.send(Destination destination,
byte[] body) |
Send a BytesMessage with the specified body to the
specified destination, using any send options, message properties and
message headers that have been defined on this JMSProducer .
|
JMSProducer |
JMSProducer.send(Destination destination,
java.io.Serializable body) |
Send an ObjectMessage with the specified body to the
specified destination, using any send options, message properties and
message headers that have been defined on this JMSProducer .
|
JMSProducer |
JMSProducer.send(Destination destination,
java.lang.String body) |
Send a TextMessage with the specified body to the
specified destination, using any send options, message properties and
message headers that have been defined on this JMSProducer .
|
JMSProducer |
JMSProducer.send(Destination destination,
java.util.Map<java.lang.String,java.lang.Object> body) |
Send a MapMessage with the specified body to the
specified destination, using any send options, message properties and
message headers that have been defined on this JMSProducer .
|
JMSProducer |
JMSProducer.send(Destination destination,
Message message) |
Sends a message to the specified destination, using any send options,
message properties and message headers that have been defined on this
JMSProducer .
|
void |
MessageProducer.send(Destination destination,
Message message) |
Sends a message to a destination for an unidentified message producer
using the MessageProducer 's default delivery mode, priority,
and time to live.
|
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 |
MessageProducer.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.
|
void |
MessageProducer.send(Destination destination,
Message message,
CompletionListener completionListener) |
Sends a message to a destination for an unidentified message producer,
using the MessageProducer '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.
|
void |
Message.setJMSDestination(Destination destination) |
Sets the Destination object for this message.
|
JMSProducer |
JMSProducer.setJMSReplyTo(Destination replyTo) |
Specifies that messages sent using this JMSProducer will
have their JMSReplyTo header value set to the specified
Destination object.
|
void |
Message.setJMSReplyTo(Destination replyTo) |
Sets the Destination object to which a reply to this
message should be sent.
|