summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/messaging/SessionImpl.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2010-04-09 16:27:35 +0000
committerGordon Sim <gsim@apache.org>2010-04-09 16:27:35 +0000
commitfcfff56e615c4054d52dc510c9cd1d1103249dce (patch)
treef07b0f91f1d71e1d8a270238269b70be022f755e /cpp/src/qpid/messaging/SessionImpl.h
parenta8671b721c82bfa4eb0d3854f8af5ab903637604 (diff)
downloadqpid-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/SessionImpl.h')
-rw-r--r--cpp/src/qpid/messaging/SessionImpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/messaging/SessionImpl.h b/cpp/src/qpid/messaging/SessionImpl.h
index e9a200b22e..de050fc5bb 100644
--- a/cpp/src/qpid/messaging/SessionImpl.h
+++ b/cpp/src/qpid/messaging/SessionImpl.h
@@ -49,8 +49,8 @@ class SessionImpl : public virtual qpid::RefCounted
virtual Receiver createReceiver(const Address& address) = 0;
virtual bool nextReceiver(Receiver& receiver, Duration timeout) = 0;
virtual Receiver nextReceiver(Duration timeout) = 0;
- virtual uint32_t available() = 0;
- virtual uint32_t pendingAck() = 0;
+ virtual uint32_t getReceivable() = 0;
+ virtual uint32_t getUnsettledAcks() = 0;
virtual Sender getSender(const std::string& name) const = 0;
virtual Receiver getReceiver(const std::string& name) const = 0;
virtual Connection getConnection() const = 0;