diff options
Diffstat (limited to 'cpp/src/qpid/broker/MessageStore.h')
| -rw-r--r-- | cpp/src/qpid/broker/MessageStore.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/MessageStore.h b/cpp/src/qpid/broker/MessageStore.h index 76469ccc50..17fd6aefb8 100644 --- a/cpp/src/qpid/broker/MessageStore.h +++ b/cpp/src/qpid/broker/MessageStore.h @@ -24,6 +24,7 @@ #include "PersistableExchange.h" #include "PersistableMessage.h" #include "PersistableQueue.h" +#include "PersistableConfig.h" #include "RecoveryManager.h" #include "TransactionalStore.h" #include "qpid/framing/FieldTable.h" @@ -87,6 +88,16 @@ public: const std::string& key, const framing::FieldTable& args) = 0; /** + * Record generic durable configuration + */ + virtual void create(const PersistableConfig& config) = 0; + + /** + * Destroy generic durable configuration + */ + virtual void destroy(const PersistableConfig& config) = 0; + + /** * Stores a messages before it has been enqueued * (enqueueing automatically stores the message so this is * only required if storage is required prior to that |
