diff options
author | Alan Conway <aconway@apache.org> | 2008-11-04 19:52:49 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-11-04 19:52:49 +0000 |
commit | eda249ff22edb3726243da81ff48c82e4d88e872 (patch) | |
tree | 0939d790e6a1b0d86993c9c3804c1adaa369aeb8 /cpp/src/qpid/cluster/DumpClient.h | |
parent | 5d2471636928eff8b8031237c54348db0d5c388d (diff) | |
download | qpid-python-eda249ff22edb3726243da81ff48c82e4d88e872.tar.gz |
constants.rb: generate type code constants for AMQP types. Useful with Array.
framing/Array:
- added some std:::vector like functions & typedefs.
- use TypeCode enums, human readable ostream << operator.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@711365 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/DumpClient.h')
-rw-r--r-- | cpp/src/qpid/cluster/DumpClient.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/DumpClient.h b/cpp/src/qpid/cluster/DumpClient.h index bb349a39ee..716e7dcc3a 100644 --- a/cpp/src/qpid/cluster/DumpClient.h +++ b/cpp/src/qpid/cluster/DumpClient.h @@ -44,6 +44,8 @@ class QueueBinding; class QueuedMessage; class SessionHandler; class DeliveryRecord; +class SessionState; +class SemanticState; } // namespace broker @@ -79,8 +81,9 @@ class DumpClient : public sys::Runnable { void dumpSession(broker::SessionHandler& s); void dumpConsumer(const broker::SemanticState::ConsumerImpl*); void dumpUnacked(const broker::DeliveryRecord&); - - private: + void dumpDeliveryRecord(const broker::DeliveryRecord&); + void dumpDeliveryRecordMessage(const broker::DeliveryRecord&); + MemberId dumperId; MemberId dumpeeId; Url dumpeeUrl; |