diff options
| author | Alan Conway <aconway@apache.org> | 2009-01-16 21:34:46 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-01-16 21:34:46 +0000 |
| commit | 5a0c2ddd943067fc38fde4b60632501fd793810b (patch) | |
| tree | b5d2bb1dbbb0083d35f6425a1447a61fdf8faf62 /cpp/src/qpid/cluster/Event.cpp | |
| parent | 53eabf3d2cd58938234017aac5901b327ad267c8 (diff) | |
| download | qpid-python-5a0c2ddd943067fc38fde4b60632501fd793810b.tar.gz | |
cluster refactor: separate out dispatch strategy, implement poller and thread dispatch.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@735151 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Event.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/Event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Event.cpp b/cpp/src/qpid/cluster/Event.cpp index 5fe2b4d5b0..8d4429a8ed 100644 --- a/cpp/src/qpid/cluster/Event.cpp +++ b/cpp/src/qpid/cluster/Event.cpp @@ -93,7 +93,7 @@ Event::operator Buffer() const { static const char* EVENT_TYPE_NAMES[] = { "data", "control" }; -std::ostream& operator << (std::ostream& o, const Event& e) { +std::ostream& operator << (std::ostream& o, const EventHeader& e) { o << "[event " << e.getConnectionId() << " " << EVENT_TYPE_NAMES[e.getType()] << " " << e.getSize() << " bytes]"; |
