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/messaging/Receiver.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/messaging/Receiver.cpp')
| -rw-r--r-- | cpp/src/qpid/messaging/Receiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/messaging/Receiver.cpp b/cpp/src/qpid/messaging/Receiver.cpp index ff67650cf8..552c1db16c 100644 --- a/cpp/src/qpid/messaging/Receiver.cpp +++ b/cpp/src/qpid/messaging/Receiver.cpp @@ -39,8 +39,8 @@ bool Receiver::fetch(Message& message, Duration timeout) { return impl->fetch(me Message Receiver::fetch(Duration timeout) { return impl->fetch(timeout); } void Receiver::setCapacity(uint32_t c) { impl->setCapacity(c); } uint32_t Receiver::getCapacity() { return impl->getCapacity(); } -uint32_t Receiver::getAvailable() { return impl->available(); } -uint32_t Receiver::getPendingAck() { return impl->pendingAck(); } +uint32_t Receiver::getAvailable() { return impl->getAvailable(); } +uint32_t Receiver::getUnsettled() { return impl->getUnsettled(); } void Receiver::close() { impl->close(); } const std::string& Receiver::getName() const { return impl->getName(); } Session Receiver::getSession() const { return impl->getSession(); } |
