|
javax.jms.Queue | getQueue () throws javax.jms.JMSException |
| Get the Queue destination set with this Sender Object. More...
|
|
void | send (javax.jms.Message _message) throws javax.jms.JMSException, javax.jms.InvalidDestinationException, javax.jms.MessageFormatException |
| Sends message to destination using the QueueSender's default delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Message _message, int deliveryMode, int priority, long timeToLive) throws javax.jms.JMSException, javax.jms.InvalidDestinationException, javax.jms.MessageFormatException |
| Sends message to destination by specifying default delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Queue _queue, javax.jms.Message _message) throws javax.jms.JMSException, javax.jms.InvalidDestinationException, javax.jms.MessageFormatException |
| Sends message to destination using the QueueSender's default delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Queue _queue, javax.jms.Message _message, int deliveryMode, int priority, long timeToLive) throws javax.jms.JMSException |
| Sends message to destination by specifying delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Queue queue, javax.jms.Message[] messages) throws javax.jms.JMSException |
| Sends batch of messages to destination using the QueueSender's default delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Queue queue, javax.jms.Message[] messages, int deliveryMode, int priority, long timeToLive) throws javax.jms.JMSException |
| Sends batch of messages to destination by specifying delivery mode, priority, and time to live. More...
|
|
synchronized void | close () throws javax.jms.JMSException |
| Closes the message producer. More...
|
|
long | getDeliveryDelay () throws JMSException |
| Gets the minimum length of time in milliseconds that must elapse after a message is sent before the JMS provider may deliver the message to a consumer. More...
|
|
int | getDeliveryMode () throws javax.jms.JMSException |
| Gets the producer's default delivery mode. More...
|
|
javax.jms.Destination | getDestination () throws javax.jms.JMSException |
| Gets the destination associated with this MessageProducer. More...
|
|
boolean | getDisableMessageID () throws javax.jms.JMSException |
| Gets an indication of whether message IDs are disabled. More...
|
|
boolean | getDisableMessageTimestamp () throws javax.jms.JMSException |
| Gets an indication of whether message timestamps are disabled. More...
|
|
int | getPriority () throws javax.jms.JMSException |
| Gets the producer's default priority for messages. More...
|
|
long | getTimeToLive () throws javax.jms.JMSException |
| Gets the default time to live. More...
|
|
void | send (Message message, int deliveryMode, int priority, long ttl) throws javax.jms.JMSException |
| Sends a message for message producer, specifying delivery mode, priority and time to live. More...
|
|
void | send (Destination destination, Message message) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a message to destination using the MessageProducer's default delivery mode, priority and time to live. More...
|
|
void | send (Message message) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a message using the MessageProducer's default delivery mode, priority, and time to live. More...
|
|
void | send (Message[] messages) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends batch of messages using the MessageProducer's default delivery mode, priority, and time to live. More...
|
|
void | send (Message[] messages, int deliveryMode, int priority, long timeToLive) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a batch of messages by specifying delivery mode, priority and time to live. More...
|
|
void | send (Destination destination, Message[] messages, int deliveryMode, int priority, long ttl) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a batch of messages to destination by specifying delivery mode, priority, and time to live. More...
|
|
void | send (Destination destination, Message[] messages) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends batch of messages to destination using the MessageProducer's default delivery mode, priority, and time to live. More...
|
|
void | send (javax.jms.Destination destination, javax.jms.Message message, int deliveryMode, int priority, long timeToLive) throws javax.jms.JMSException, java.lang.UnsupportedOperationException |
| Sends message to a destination, specifying delivery mode, priority and time to live. More...
|
|
void | send (Message message, CompletionListener completionListener) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a message using the. More...
|
|
void | send (Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a message, 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. More...
|
|
void | send (Destination destination, Message message, CompletionListener completionListener) throws javax.jms.JMSException, UnsupportedOperationException |
| Sends a message to a destination for an unidentified message producer, using the. More...
|
|
void | send (Destination destination, Message message, int deliveryMode, int priority, long timeToLive, CompletionListener completionListener) throws javax.jms.JMSException, java.lang.UnsupportedOperationException |
| 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. More...
|
|
void | setDeliveryDelay (long deliveryDelay) throws JMSException |
| Sets the minimum length of time in milliseconds that must elapse after a message is sent before the JMS provider may deliver the message to a consumer. More...
|
|
void | setDeliveryMode (int deliveryMode) throws javax.jms.JMSException |
| Set the default delivery mode to be used by Producer. More...
|
|
void | setDisableMessageID (boolean value) throws javax.jms.JMSException |
| Set disable message ID. More...
|
|
void | setDisableMessageTimestamp (boolean value) throws javax.jms.JMSException |
| Set disable message time stamp. More...
|
|
void | setPriority (int messagePriority) throws javax.jms.JMSException |
| Sets the producer's default priority. More...
|
|
void | setTimeToLive (long timeToLive) throws javax.jms.JMSException |
| Sets the default time to live in milliseconds. More...
|
|