diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2012-09-24 13:49:13 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2012-09-24 13:49:13 +0000 |
| commit | c095a631dcb2c7be5e167ed50f658f7c24330a45 (patch) | |
| tree | f3c6dc1e3a9f6e12501c1dcb794d18779db477ac /cpp/src/qpid/broker/QueueRegistry.cpp | |
| parent | 0f327ee25b5ab4b9a38a8620a666e6bfc66000e7 (diff) | |
| download | qpid-python-c095a631dcb2c7be5e167ed50f658f7c24330a45.tar.gz | |
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
Diffstat (limited to 'cpp/src/qpid/broker/QueueRegistry.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/QueueRegistry.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
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(); } |
