diff options
Diffstat (limited to 'cpp/src/qpid/broker/SemanticHandler.h')
-rw-r--r-- | cpp/src/qpid/broker/SemanticHandler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SemanticHandler.h b/cpp/src/qpid/broker/SemanticHandler.h index 478dfb6760..f17ef67bfc 100644 --- a/cpp/src/qpid/broker/SemanticHandler.h +++ b/cpp/src/qpid/broker/SemanticHandler.h @@ -25,6 +25,7 @@ #include "BrokerAdapter.h" #include "DeliveryAdapter.h" #include "MessageBuilder.h" +#include "IncomingExecutionContext.h" #include "qpid/framing/amqp_types.h" #include "qpid/framing/AMQP_ServerOperations.h" @@ -53,7 +54,7 @@ class SemanticHandler : public DeliveryAdapter, Session& session; Connection& connection; BrokerAdapter adapter; - framing::Window incoming; + IncomingExecutionContext incoming; framing::Window outgoing; sys::Mutex outLock; MessageBuilder msgBuilder; @@ -65,6 +66,8 @@ class SemanticHandler : public DeliveryAdapter, void handleCommand(framing::AMQMethodBody* method); void handleContent(framing::AMQFrame& frame); + void sendCompletion(); + //ChannelAdapter virtual methods: void handleMethod(framing::AMQMethodBody* method); |