Value | Description |
AUTO_ACKNOWLEDGE | Automatically acknowledges the successful receipt of a message. Message acknowledgements are sent asynchronously to Broker Server. Configure these properties to change the default behavior of message acknowledgements: autoAckBatchSize autoAckBatchSizeRetry autoAckServicePollInterval For information about the APIs available for configuring the asynchronous auto acknowledgements, see the descriptions of the WmJMSConfig class in the Javadoc. |
CLIENT_ACKNOWLEDGE | Acknowledges the receipt of a message when the client calls the message's acknowledge() method. |
DUPS_OK_ACKNOWLEDGE | Instructs the session to automatically, lazily acknowledge the receipt of messages. This reduces system overhead but may result in duplicate messages being sent. |
SESSION_TRANSACTED | Used for transacted sessions. The acknowledgment mode is ignored. |