diff options
author | Alan Conway <aconway@apache.org> | 2008-11-12 17:15:20 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-11-12 17:15:20 +0000 |
commit | c99d4d45ead8020517838b99e2106887701b17d7 (patch) | |
tree | 66559a3df444de8a4cb52ffbead0123dd2325d69 /cpp/src/qpid/cluster/Connection.h | |
parent | 1a18c1798833e7201177e786afa0d05412c4f53b (diff) | |
download | qpid-python-c99d4d45ead8020517838b99e2106887701b17d7.tar.gz |
Cluster replicates queues/exchanges with same encode/decode functions as the store.
Removed un-necessary heap allocation in QPID_LOG statements.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@713425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.h')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/qpid/cluster/Connection.h b/cpp/src/qpid/cluster/Connection.h index 4d06848ae6..36476baa34 100644 --- a/cpp/src/qpid/cluster/Connection.h +++ b/cpp/src/qpid/cluster/Connection.h @@ -137,6 +137,10 @@ class Connection : void txEnd(); void accumulatedAck(const qpid::framing::SequenceSet&); + // Encoded queue/exchange replication. + void queue(const std::string& encoded); + void exchange(const std::string& encoded); + private: bool checkUnsupported(const framing::AMQBody& body); void deliverClose(); |