diff options
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, |
