summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/RecoverableQueue.h
diff options
context:
space:
mode:
authorCarl C. Trieloff <cctrieloff@apache.org>2007-09-21 19:10:31 +0000
committerCarl C. Trieloff <cctrieloff@apache.org>2007-09-21 19:10:31 +0000
commitcbc5208454b68c36ffec6b6bee87d4598e23be6c (patch)
tree8d54a2e0dfb85a6638c1374ebe1ecf320702e3e9 /cpp/src/qpid/broker/RecoverableQueue.h
parent2f6d6ad7efd788b71204af67dff51b6233881e2e (diff)
downloadqpid-python-cbc5208454b68c36ffec6b6bee87d4598e23be6c.tar.gz
- dequeue fix for AIO
- added access functions needed for AIO in Recoverable classes. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@578232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/RecoverableQueue.h')
-rw-r--r--cpp/src/qpid/broker/RecoverableQueue.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/RecoverableQueue.h b/cpp/src/qpid/broker/RecoverableQueue.h
index 578cc09e04..b32bae7f07 100644
--- a/cpp/src/qpid/broker/RecoverableQueue.h
+++ b/cpp/src/qpid/broker/RecoverableQueue.h
@@ -40,6 +40,7 @@ public:
typedef boost::shared_ptr<RecoverableQueue> shared_ptr;
virtual void setPersistenceId(uint64_t id) = 0;
+ virtual uint64_t getPersistenceId() const = 0;
/**
* Used during recovery to add stored messages back to the queue
*/
@@ -48,7 +49,7 @@ public:
virtual const std::string& getName() const = 0;
virtual void setExternalQueueStore(ExternalQueueStore* inst) = 0;
-
+ virtual ExternalQueueStore* getExternalQueueStore() const = 0;
};