diff options
author | Jonathan Robie <jonathan@apache.org> | 2010-10-15 13:00:13 +0000 |
---|---|---|
committer | Jonathan Robie <jonathan@apache.org> | 2010-10-15 13:00:13 +0000 |
commit | f0922bfe420ab04d1ebc09140df581d30d3d6494 (patch) | |
tree | b882339aa28c108fa91ba5393452d7e9ee1af831 /cpp/include/qpid | |
parent | c75c7628ebb3818f563eb86c33dc4504c919526b (diff) | |
download | qpid-python-f0922bfe420ab04d1ebc09140df581d30d3d6494.tar.gz |
Improved wording in the doxygen strings for session::reject(), session::release().
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1022902 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid')
-rw-r--r-- | cpp/include/qpid/messaging/Session.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/include/qpid/messaging/Session.h b/cpp/include/qpid/messaging/Session.h index ed8d87ceb2..bb631f1563 100644 --- a/cpp/include/qpid/messaging/Session.h +++ b/cpp/include/qpid/messaging/Session.h @@ -80,13 +80,15 @@ class Session : public qpid::messaging::Handle<SessionImpl> */ QPID_MESSAGING_EXTERN void acknowledge(Message&, bool sync=false); /** - * Rejects the specified message. The broker does not redeliver - * a message that has been rejected. + * Rejects the specified message. The broker does not redeliver a + * message that has been rejected. Once a message has been + * acknowledged, it can no longer be rejected. */ QPID_MESSAGING_EXTERN void reject(Message&); /** - * Releases the specified message. The broker may - * redeliver the message. + * Releases the specified message. The broker may redeliver the + * message. One a message has been acknowledged, it can no longer + * be released. */ QPID_MESSAGING_EXTERN void release(Message&); |