summaryrefslogtreecommitdiff
path: root/cpp/include/qpid/messaging/Session.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2010-03-31 16:17:17 +0000
committerGordon Sim <gsim@apache.org>2010-03-31 16:17:17 +0000
commitf6f1900eb98cc1773a88a3ec309afa646438a384 (patch)
tree68e50e7aa1819afd283d73700965b539355a779d /cpp/include/qpid/messaging/Session.h
parent887281838e4bf7825189ce3b0a8d7509789e6a08 (diff)
downloadqpid-python-f6f1900eb98cc1773a88a3ec309afa646438a384.tar.gz
QPID-664: made changes suggested by Alan Conway, also moved 0-10 map/list codecs to common lib
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929606 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid/messaging/Session.h')
-rw-r--r--cpp/include/qpid/messaging/Session.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/qpid/messaging/Session.h b/cpp/include/qpid/messaging/Session.h
index eaecb69260..75bbe409ff 100644
--- a/cpp/include/qpid/messaging/Session.h
+++ b/cpp/include/qpid/messaging/Session.h
@@ -87,13 +87,13 @@ 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.
*/
- QPID_CLIENT_EXTERN uint32_t available();
+ QPID_CLIENT_EXTERN uint32_t getAvailable();
/**
* 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 pendingAck();
+ QPID_CLIENT_EXTERN uint32_t getPendingAck();
/**
* Retrieves the receiver for the next available message. If there
* are no available messages at present the call will block for up
@@ -108,8 +108,8 @@ class Session : public qpid::messaging::Handle<SessionImpl>
* are no available messages at present the call will block for up
* to the specified timeout waiting for one to arrive.
*
- *@exception Receiver::NoMessageAvailable if no message became available in
- * time.
+ * @exception Receiver::NoMessageAvailable if no message became
+ * available in time.
*/
QPID_CLIENT_EXTERN Receiver nextReceiver(Duration timeout=Duration::FOREVER);