diff options
author | Gordon Sim <gsim@apache.org> | 2010-04-09 16:27:35 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-04-09 16:27:35 +0000 |
commit | fcfff56e615c4054d52dc510c9cd1d1103249dce (patch) | |
tree | f07b0f91f1d71e1d8a270238269b70be022f755e /cpp/include/qpid/messaging/Session.h | |
parent | a8671b721c82bfa4eb0d3854f8af5ab903637604 (diff) | |
download | qpid-python-fcfff56e615c4054d52dc510c9cd1d1103249dce.tar.gz |
QPID-664: changed pending to unsettled; added available to sender; minor update to address doc
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid/messaging/Session.h')
-rw-r--r-- | cpp/include/qpid/messaging/Session.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/include/qpid/messaging/Session.h b/cpp/include/qpid/messaging/Session.h index b3bc527329..ac0ea425f6 100644 --- a/cpp/include/qpid/messaging/Session.h +++ b/cpp/include/qpid/messaging/Session.h @@ -96,15 +96,17 @@ class Session : public qpid::messaging::Handle<SessionImpl> /** * Returns the total number of messages received and waiting to be - * fetched by all Receivers belonging to this session. + * fetched by all Receivers belonging to this session. This is the + * total number of available messages across all receivers on this + * session. */ - QPID_CLIENT_EXTERN uint32_t getAvailable(); + QPID_CLIENT_EXTERN uint32_t getReceivable(); /** * Returns a count of the number of messages received this session * that have been acknowledged, but for which that acknowledgement * has not yet been confirmed as processed by the server. */ - QPID_CLIENT_EXTERN uint32_t getPendingAck(); + QPID_CLIENT_EXTERN uint32_t getUnsettledAcks(); /** * Retrieves the receiver for the next available message. If there * are no available messages at present the call will block for up |