February 2002
Beginner to intermediate
544 pages
10h 23m
English
The following fields are defined in the interface javax.jms.Session.
public static final int AUTO_ACKNOWLEDGE
With this acknowledgment mode, the session automatically acknowledges a client's receipt of a message either when the session has successfully returned from a call to receive or when the message listener the session has called to process the message successfully returns.
public static final int CLIENT_ACKNOWLEDGE
With this acknowledgment mode, the client acknowledges a consumed message by calling the message's acknowledge method. Acknowledging a consumed message acknowledges all messages that the session has consumed.
When client acknowledgment mode is used, a client may build up a ...
Read now
Unlock full access