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/management | |
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/management')
-rw-r--r-- | cpp/src/qpid/management/ManagementDirectExchange.h | 4 | ||||
-rw-r--r-- | cpp/src/qpid/management/ManagementTopicExchange.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/qpid/management/ManagementDirectExchange.h b/cpp/src/qpid/management/ManagementDirectExchange.h index 582354d723..481a8c499d 100644 --- a/cpp/src/qpid/management/ManagementDirectExchange.h +++ b/cpp/src/qpid/management/ManagementDirectExchange.h @@ -48,6 +48,10 @@ class ManagementDirectExchange : public virtual DirectExchange void setManagmentAgent(management::ManagementAgent* agent, int qmfVersion); virtual ~ManagementDirectExchange(); + + // DataSource interface - used to write persistence data to async store + uint64_t getSize() { return 0; } + void write(char* /*target*/) {} }; diff --git a/cpp/src/qpid/management/ManagementTopicExchange.h b/cpp/src/qpid/management/ManagementTopicExchange.h index eff01a8552..0d6b6ad50c 100644 --- a/cpp/src/qpid/management/ManagementTopicExchange.h +++ b/cpp/src/qpid/management/ManagementTopicExchange.h @@ -52,6 +52,11 @@ class ManagementTopicExchange : public virtual TopicExchange void setManagmentAgent(management::ManagementAgent* agent, int qmfVersion); virtual ~ManagementTopicExchange(); + + // DataSource interface - used to write persistence data to async store + uint64_t getSize() { return 0; } + void write(char* /*target*/) {} + }; |