diff options
author | Alan Conway <aconway@apache.org> | 2008-10-23 16:21:56 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-10-23 16:21:56 +0000 |
commit | 9d6e5ee84b3c3a53dfe78d3b5b74986495e7abee (patch) | |
tree | 257bed543782bbb7ca80a411a6d26b04a9b0784d /cpp/src/qpid/cluster/DumpClient.cpp | |
parent | 1b127dfaac12835181f61637fb751380aff78e7e (diff) | |
download | qpid-python-9d6e5ee84b3c3a53dfe78d3b5b74986495e7abee.tar.gz |
Minor changes to provide access for cluster to replicate delivery records.
- broker::Queue: find message by position, set position.
- broker::SemanticState: make record() public, add eachUnacked(), fix typo "NotifyEnabld"
- broker::DeliveryRecord: added more public accessors
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707406 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/DumpClient.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/DumpClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/DumpClient.cpp b/cpp/src/qpid/cluster/DumpClient.cpp index 4bc001b4c6..802019feb1 100644 --- a/cpp/src/qpid/cluster/DumpClient.cpp +++ b/cpp/src/qpid/cluster/DumpClient.cpp @@ -241,7 +241,7 @@ void DumpClient::dumpConsumer(broker::SemanticState::ConsumerImpl* ci) { ProtocolVersion(), ci->getName(), ci->isBlocked(), - ci->isNotifyEnabld() + ci->isNotifyEnabled() ); client::SessionBase_0_10Access(shadowSession).get()->send(state); QPID_LOG(debug, dumperId << " dumped consumer " << ci->getName() << " on " << shadowSession.getId()); |