summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/RecoveryManagerImpl.h
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2010-04-15 15:57:46 +0000
committerKim van der Riet <kpvdr@apache.org>2010-04-15 15:57:46 +0000
commit0d368a574d1898a1dc7ec04847728d63ce74ee5e (patch)
tree8d4b3b05faa0c1d4456031423911c3cb974beff1 /cpp/src/qpid/broker/RecoveryManagerImpl.h
parent60da39342e42ebd137853034d786220edcd88b0b (diff)
downloadqpid-python-0d368a574d1898a1dc7ec04847728d63ce74ee5e.tar.gz
Implementation of QPID-2509 (Remove message staging from C++ broker)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@934463 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/RecoveryManagerImpl.h')
-rw-r--r--cpp/src/qpid/broker/RecoveryManagerImpl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/RecoveryManagerImpl.h b/cpp/src/qpid/broker/RecoveryManagerImpl.h
index 6fbbfc4a6c..1ad7892b13 100644
--- a/cpp/src/qpid/broker/RecoveryManagerImpl.h
+++ b/cpp/src/qpid/broker/RecoveryManagerImpl.h
@@ -36,10 +36,9 @@ namespace broker {
ExchangeRegistry& exchanges;
LinkRegistry& links;
DtxManager& dtxMgr;
- const uint64_t stagingThreshold;
public:
RecoveryManagerImpl(QueueRegistry& queues, ExchangeRegistry& exchanges, LinkRegistry& links,
- DtxManager& dtxMgr, uint64_t stagingThreshold);
+ DtxManager& dtxMgr);
~RecoveryManagerImpl();
RecoverableExchange::shared_ptr recoverExchange(framing::Buffer& buffer);