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/src/qpid/client/amqp0_10/ReceiverImpl.cpp | |
| 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/src/qpid/client/amqp0_10/ReceiverImpl.cpp')
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp b/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp index 343b5cad37..b86f142546 100644 --- a/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp +++ b/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp @@ -130,14 +130,14 @@ uint32_t ReceiverImpl::getCapacity() return capacity; } -uint32_t ReceiverImpl::available() +uint32_t ReceiverImpl::getAvailable() { - return parent->available(destination); + return parent->getReceivable(destination); } -uint32_t ReceiverImpl::pendingAck() +uint32_t ReceiverImpl::getUnsettled() { - return parent->pendingAck(destination); + return parent->getUnsettledAcks(destination); } ReceiverImpl::ReceiverImpl(SessionImpl& p, const std::string& name, |
