summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/MessageStoreModule.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/lib/broker/MessageStoreModule.h')
-rw-r--r--cpp/lib/broker/MessageStoreModule.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/lib/broker/MessageStoreModule.h b/cpp/lib/broker/MessageStoreModule.h
index fcff71bd35..c49e06efa1 100644
--- a/cpp/lib/broker/MessageStoreModule.h
+++ b/cpp/lib/broker/MessageStoreModule.h
@@ -45,8 +45,9 @@ namespace qpid {
void loadContent(Message* const msg, std::string& data, u_int64_t offset, u_int32_t length);
void enqueue(TransactionContext* ctxt, Message* const msg, const Queue& queue, const string * const xid);
void dequeue(TransactionContext* ctxt, Message* const msg, const Queue& queue, const string * const xid);
- void committed(const string * const xid);
- void aborted(const string * const xid);
+ void prepared(const std::string * const xid);
+ void committed(const std::string * const xid);
+ void aborted(const std::string * const xid);
std::auto_ptr<TransactionContext> begin();
void commit(TransactionContext* ctxt);
void abort(TransactionContext* ctxt);