summaryrefslogtreecommitdiff
path: root/qpid/cpp/include
diff options
context:
space:
mode:
authorJonathan Robie <jonathan@apache.org>2010-10-15 13:00:13 +0000
committerJonathan Robie <jonathan@apache.org>2010-10-15 13:00:13 +0000
commitbba57b32b6b67bbce808a15858c9b70fe406c20d (patch)
tree9fd13ce11790f39eaf562ceb3881f0e81086d0df /qpid/cpp/include
parent4a815ef3a1fac122c16c7a97516612a1fa8793c0 (diff)
downloadqpid-python-bba57b32b6b67bbce808a15858c9b70fe406c20d.tar.gz
Improved wording in the doxygen strings for session::reject(), session::release().
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1022902 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
-rw-r--r--qpid/cpp/include/qpid/messaging/Session.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/qpid/cpp/include/qpid/messaging/Session.h b/qpid/cpp/include/qpid/messaging/Session.h
index ed8d87ceb2..bb631f1563 100644
--- a/qpid/cpp/include/qpid/messaging/Session.h
+++ b/qpid/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&);