From c095a631dcb2c7be5e167ed50f658f7c24330a45 Mon Sep 17 00:00:00 2001 From: Kim van der Riet Date: Mon, 24 Sep 2012 13:49:13 +0000 Subject: QPID-3858: WIP: Provisional checkin: Wiring of async store interface to broker. Code compiles, but as persistent transactions are currentl disconnected, not all tests pass. git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1389378 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/QueueRegistry.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/broker/QueueRegistry.cpp') diff --git a/cpp/src/qpid/broker/QueueRegistry.cpp b/cpp/src/qpid/broker/QueueRegistry.cpp index 3521e08325..420a9caa28 100644 --- a/cpp/src/qpid/broker/QueueRegistry.cpp +++ b/cpp/src/qpid/broker/QueueRegistry.cpp @@ -100,12 +100,14 @@ Queue::shared_ptr QueueRegistry::get(const string& name) { return q; } -void QueueRegistry::setStore (MessageStore* _store) +//void QueueRegistry::setStore (MessageStore* _store) +void QueueRegistry::setStore (AsyncStore* _store) { QueueFactory::setStore(_store); } -MessageStore* QueueRegistry::getStore() const +//MessageStore* QueueRegistry::getStore() const +AsyncStore* QueueRegistry::getStore() const { return QueueFactory::getStore(); } -- cgit v1.2.1