diff options
| author | Alan Conway <aconway@apache.org> | 2010-05-14 13:55:18 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-05-14 13:55:18 +0000 |
| commit | 854062d73c485027f2f40abac159cb19e85c0dca (patch) | |
| tree | 018655bb2fe2f0320bf39ea4fb6e9b25e833d778 /cpp/src/qpid/messaging/Receiver.cpp | |
| parent | 18a06573ea14a98029764d1badf42695b3a31643 (diff) | |
| download | qpid-python-854062d73c485027f2f40abac159cb19e85c0dca.tar.gz | |
Initial multi-thread unit test for messaging API.
- added Receiver::isClosed() to test for local close.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@944261 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/Receiver.cpp')
| -rw-r--r-- | cpp/src/qpid/messaging/Receiver.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/messaging/Receiver.cpp b/cpp/src/qpid/messaging/Receiver.cpp index 552c1db16c..78e0c5daa3 100644 --- a/cpp/src/qpid/messaging/Receiver.cpp +++ b/cpp/src/qpid/messaging/Receiver.cpp @@ -44,4 +44,5 @@ 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(); } +bool Receiver::isClosed() const { return impl->isClosed(); } }} // namespace qpid::messaging |
