diff options
Diffstat (limited to 'cpp/src/qpid/broker/RecoverableQueue.h')
| -rw-r--r-- | cpp/src/qpid/broker/RecoverableQueue.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/RecoverableQueue.h b/cpp/src/qpid/broker/RecoverableQueue.h index 656a5f0149..578cc09e04 100644 --- a/cpp/src/qpid/broker/RecoverableQueue.h +++ b/cpp/src/qpid/broker/RecoverableQueue.h @@ -28,6 +28,8 @@ namespace qpid { namespace broker { +class ExternalQueueStore; + /** * The interface through which messages are added back to queues on * recovery. @@ -43,6 +45,11 @@ public: */ virtual void recover(RecoverableMessage::shared_ptr msg) = 0; virtual ~RecoverableQueue() {}; + + virtual const std::string& getName() const = 0; + virtual void setExternalQueueStore(ExternalQueueStore* inst) = 0; + + }; }} |
