diff options
Diffstat (limited to 'cpp/src/qpid/client/LocalQueue.cpp')
-rw-r--r-- | cpp/src/qpid/client/LocalQueue.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/LocalQueue.cpp b/cpp/src/qpid/client/LocalQueue.cpp index 7fbe4a053e..f44a04837b 100644 --- a/cpp/src/qpid/client/LocalQueue.cpp +++ b/cpp/src/qpid/client/LocalQueue.cpp @@ -47,4 +47,11 @@ Message LocalQueue::pop() { void LocalQueue::setAckPolicy(AckPolicy a) { autoAck=a; } +bool LocalQueue::empty() +{ + if (!queue) + throw ClosedException(); + return queue->isEmpty(); +} + }} // namespace qpid::client |