diff options
author | Alan Conway <aconway@apache.org> | 2009-01-21 20:40:38 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-01-21 20:40:38 +0000 |
commit | 35c504c10c6f5ae94216a4173c035720acec297e (patch) | |
tree | 65c9aee831c5a92f9074d9ec0ece1b12ecc403b1 /cpp/src/qpid/cluster/Event.h | |
parent | 3924106491c2fbfc05f5cbf4dbdeccc51c903cf2 (diff) | |
download | qpid-python-35c504c10c6f5ae94216a4173c035720acec297e.tar.gz |
cluster: Pipeline decoding. About 10% improvement in latency and throughput.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@736409 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Event.h')
-rw-r--r-- | cpp/src/qpid/cluster/Event.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cpp/src/qpid/cluster/Event.h b/cpp/src/qpid/cluster/Event.h index 110ec524c7..a1d21f5e04 100644 --- a/cpp/src/qpid/cluster/Event.h +++ b/cpp/src/qpid/cluster/Event.h @@ -31,12 +31,15 @@ #include <sys/uio.h> // For iovec #include <iosfwd> +#include "types.h" + namespace qpid { -namespace cluster { -// TODO aconway 2008-09-03: more efficient solution for shared -// byte-stream data. -// +namespace framing { +class AMQBody; +} + +namespace cluster { /** Header data for a multicast event */ class EventHeader : public ::qpid::sys::LatencyMetricTimestamp { |