diff options
author | Gordon Sim <gsim@apache.org> | 2010-03-31 16:17:17 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-03-31 16:17:17 +0000 |
commit | f6f1900eb98cc1773a88a3ec309afa646438a384 (patch) | |
tree | 68e50e7aa1819afd283d73700965b539355a779d /cpp/include/qpid/messaging/Receiver.h | |
parent | 887281838e4bf7825189ce3b0a8d7509789e6a08 (diff) | |
download | qpid-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/Receiver.h')
-rw-r--r-- | cpp/include/qpid/messaging/Receiver.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/qpid/messaging/Receiver.h b/cpp/include/qpid/messaging/Receiver.h index 48b0b78754..d89813acfc 100644 --- a/cpp/include/qpid/messaging/Receiver.h +++ b/cpp/include/qpid/messaging/Receiver.h @@ -59,7 +59,7 @@ class Receiver : public qpid::messaging::Handle<ReceiverImpl> * for up to the specified timeout for a message to become * available. * - *@exception NoMessageAvailable if there is no message to give + * @exception NoMessageAvailable if there is no message to give * after waiting for the specified timeout. */ QPID_CLIENT_EXTERN Message get(Duration timeout=Duration::FOREVER); @@ -78,7 +78,7 @@ class Receiver : public qpid::messaging::Handle<ReceiverImpl> * that there is no message for the subscription this receiver is * serving before throwing an exception. * - *@exception NoMessageAvailable if there is no message to give + * @exception NoMessageAvailable if there is no message to give * after waiting for the specified timeout. */ QPID_CLIENT_EXTERN Message fetch(Duration timeout=Duration::FOREVER); @@ -99,14 +99,14 @@ class Receiver : public qpid::messaging::Handle<ReceiverImpl> * Returns the number of messages received and waiting to be * fetched. */ - QPID_CLIENT_EXTERN uint32_t available(); + QPID_CLIENT_EXTERN uint32_t getAvailable(); /** * Returns a count of the number of messages received on this * receiver 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(); /** * Cancels this receiver. |