users@jms-spec.java.net

[jms-spec users] [jsr343-experts] Re: (JMS_SPEC-68) Add new method Session.acknowledge()

From: <reza_rahman_at_lycos.com>
Date: Tue, 17 Jan 2012 17:49:07 +0000 (GMT)
+1.

Jan 16, 2012 10:44:38 AM, jsr343-experts@jms-spec.java.net wrote:
I have logged the following issue:
http://java.net/jira/browse/JMS_SPEC-68

When a session is created with an acknowledgement mode of Session.CLIENT_ACKNOWLEDGE, messages are acknowledged by
calling the acknowledge() method on the Message object.

However this method is potentially misleading because calling it causes all messages delivered to the Session to be
acknowledged,. It doesn't just acknowledge the Message on which the acknowledge method is called. JMS 1.1 recognised
this issue and clarified the spec and javadocs to make this clear.

However the fact that the acknowledge method is on the Message is still potentially confusing. Although we can never
remove this method because of the need to maintain compatibility, adding an acknowledge method to the Session would
allow application code to reflect the true behaviour.

It is therefore proposed that a new method acknowledge() be added to the Session interface which causes all messages
delivered to the Session to be acknowledged (i.e. identical behaviour to the existing method).

For unrelated reasons, the proposed simplified API {JMS_SPEC-64) needs to provide an acknowledge method on
MessagingContext. This is to allow the use of methods which receive a message payload directly, and hence do not return
a Message, to use client-acknowledgement. Adding a similar method on Session would be consistent with this.

Any comments?

Nigel