summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/DtxAck.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-06-09 20:53:57 +0000
committerGordon Sim <gsim@apache.org>2008-06-09 20:53:57 +0000
commit31a74cd4a5c849b134a172cc5e6ce2e2a447e5e5 (patch)
treec3472a6594e96e4b15c37b2d3c9bb0bd12a38013 /cpp/src/qpid/broker/DtxAck.h
parent76e2ec81529864e243f6de7de8e897bc0700e649 (diff)
downloadqpid-python-31a74cd4a5c849b134a172cc5e6ce2e2a447e5e5.tar.gz
Moved from AccumulatedAck to SequenceSet in managing transactional accepts
Added transactional option to perftest Removed clientid from ConnectionSettings as it appears not to be used git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@665890 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/DtxAck.h')
-rw-r--r--cpp/src/qpid/broker/DtxAck.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/DtxAck.h b/cpp/src/qpid/broker/DtxAck.h
index c61b279c42..05c4499839 100644
--- a/cpp/src/qpid/broker/DtxAck.h
+++ b/cpp/src/qpid/broker/DtxAck.h
@@ -24,7 +24,7 @@
#include <algorithm>
#include <functional>
#include <list>
-#include "qpid/framing/AccumulatedAck.h"
+#include "qpid/framing/SequenceSet.h"
#include "DeliveryRecord.h"
#include "TxOp.h"
@@ -34,7 +34,7 @@ namespace qpid {
std::list<DeliveryRecord> pending;
public:
- DtxAck(const framing::AccumulatedAck& acked, std::list<DeliveryRecord>& unacked);
+ DtxAck(const framing::SequenceSet& acked, std::list<DeliveryRecord>& unacked);
virtual bool prepare(TransactionContext* ctxt) throw();
virtual void commit() throw();
virtual void rollback() throw();