diff options
author | Gordon Sim <gsim@apache.org> | 2007-08-28 19:38:17 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-08-28 19:38:17 +0000 |
commit | 9e10f4ea3b2f8ab6650f635cada48e4735ca20d7 (patch) | |
tree | 26ad3b8dffa17fa665fe7a033a7c8092839df011 /cpp/src/qpid/client/ExecutionHandler.h | |
parent | 6b09696b216c090b512c6af92bf7976ae3407add (diff) | |
download | qpid-python-9e10f4ea3b2f8ab6650f635cada48e4735ca20d7.tar.gz |
Updated message.transfer encoding to use header and content segments (including new structs).
Unified more between the basic and message classes messages.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@570538 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/ExecutionHandler.h')
-rw-r--r-- | cpp/src/qpid/client/ExecutionHandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/client/ExecutionHandler.h b/cpp/src/qpid/client/ExecutionHandler.h index b409d5df7b..f740e14185 100644 --- a/cpp/src/qpid/client/ExecutionHandler.h +++ b/cpp/src/qpid/client/ExecutionHandler.h @@ -23,12 +23,12 @@ #include <queue> #include "qpid/framing/AMQP_ServerOperations.h" +#include "qpid/framing/FrameSet.h" #include "qpid/framing/SequenceNumber.h" #include "BlockingQueue.h" #include "ChainableFrameHandler.h" #include "CompletionTracker.h" #include "Correlator.h" -#include "ReceivedContent.h" namespace qpid { namespace client { @@ -39,7 +39,7 @@ class ExecutionHandler : { framing::Window incoming; framing::Window outgoing; - ReceivedContent::shared_ptr arriving; + framing::FrameSet::shared_ptr arriving; Correlator correlation; CompletionTracker completion; framing::ProtocolVersion version; @@ -52,7 +52,7 @@ class ExecutionHandler : void sync(); public: - BlockingQueue<ReceivedContent::shared_ptr> received; + BlockingQueue<framing::FrameSet::shared_ptr> received; ExecutionHandler(uint64_t maxFrameSize = 65536); |