From 39dd61bc66b531810160ef00de938846c27052c9 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Wed, 13 Dec 2006 09:22:07 +0000 Subject: Added prepared() method to MessageStore interface. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486555 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/broker/MessageStoreModule.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/lib/broker/MessageStoreModule.h') 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 begin(); void commit(TransactionContext* ctxt); void abort(TransactionContext* ctxt); -- cgit v1.2.1