diff options
Diffstat (limited to 'cpp/lib/common/sys/posix/EventChannelConnection.h')
-rw-r--r-- | cpp/lib/common/sys/posix/EventChannelConnection.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/lib/common/sys/posix/EventChannelConnection.h b/cpp/lib/common/sys/posix/EventChannelConnection.h index bace045993..1504e92651 100644 --- a/cpp/lib/common/sys/posix/EventChannelConnection.h +++ b/cpp/lib/common/sys/posix/EventChannelConnection.h @@ -24,17 +24,17 @@ #include "EventChannelThreads.h" #include "sys/Monitor.h" #include "sys/SessionContext.h" -#include "sys/SessionHandler.h" +#include "sys/ConnectionInputHandler.h" #include "sys/AtomicCount.h" #include "framing/AMQFrame.h" namespace qpid { namespace sys { -class SessionHandlerFactory; +class ConnectionInputHandlerFactory; /** - * Implements SessionContext and delegates to a SessionHandler + * Implements SessionContext and delegates to a ConnectionInputHandler * for a connection via the EventChannel. *@param readDescriptor file descriptor for reading. *@param writeDescriptor file descriptor for writing, @@ -44,7 +44,7 @@ class EventChannelConnection : public SessionContext { public: EventChannelConnection( EventChannelThreads::shared_ptr threads, - SessionHandlerFactory& factory, + ConnectionInputHandlerFactory& factory, int readDescriptor, int writeDescriptor = 0, bool isTrace = false @@ -86,7 +86,7 @@ class EventChannelConnection : public SessionContext { AtomicCount busyThreads; EventChannelThreads::shared_ptr threads; - std::auto_ptr<SessionHandler> handler; + std::auto_ptr<ConnectionInputHandler> handler; qpid::framing::Buffer in, out; FrameQueue writeFrames; bool isTrace; |