diff options
author | Alan Conway <aconway@apache.org> | 2008-09-21 05:04:04 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-09-21 05:04:04 +0000 |
commit | 558e92d6c9cf8dfb875c1250ab8fe1cefaf30b05 (patch) | |
tree | 9b306597ee07b264fa18580546ed5645f0c3766d /cpp/src/qpid/cluster/Event.h | |
parent | 7c70d21ca2d788d4432cfa89851c9b928c9f30aa (diff) | |
download | qpid-python-558e92d6c9cf8dfb875c1250ab8fe1cefaf30b05.tar.gz |
DumpClient send connections & session IDs to new members.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@697446 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Event.h')
-rw-r--r-- | cpp/src/qpid/cluster/Event.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/qpid/cluster/Event.h b/cpp/src/qpid/cluster/Event.h index a0f9bc0e49..b8c2bc3901 100644 --- a/cpp/src/qpid/cluster/Event.h +++ b/cpp/src/qpid/cluster/Event.h @@ -56,16 +56,12 @@ class Event { char* getData() { return data; } const char* getData() const { return data; } - boost::intrusive_ptr<Connection> getConnection() const { return connection; } - void setConnection(const boost::intrusive_ptr<Connection>& c) { connection=c; } - operator framing::Buffer() const; private: static const size_t OVERHEAD; EventType type; ConnectionId connectionId; - boost::intrusive_ptr<Connection> connection; size_t size; RefCountedBuffer::pointer data; }; |