Creates a connection consumer for this connection (optional operation) on the specific destination.
Creates a JMSConsumer
for the specified destination.
Creates a JMSConsumer
for the specified destination, using a message selector.
Creates a JMSConsumer
for the specified destination, specifying a message selector and the noLocal
parameter.
Creates a MessageConsumer
for the specified destination.
Creates a MessageConsumer
for the specified destination, using a message selector.
Creates a MessageConsumer
for the specified destination, specifying a message selector and the
noLocal
parameter.
Creates a MessageProducer
to send messages to the specified destination.
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
.
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
.
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
.
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
.
Sends a message to the specified destination, using any send options, message properties and message headers that
have been defined on this JMSProducer
.
void
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
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
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
Sets the Destination
object for this message.
Specifies that messages sent using this JMSProducer
will have their JMSReplyTo
header value set to
the specified Destination
object.
void
Sets the Destination
object to which a reply to this message should be sent.