diff options
author | Alan Conway <aconway@apache.org> | 2007-01-16 20:17:50 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-01-16 20:17:50 +0000 |
commit | bc84e62cc549ac2d751a45d61a867354c84c60d6 (patch) | |
tree | 160824086ea1edfd2d28f153626d378d69d0f516 /cpp/lib/common/sys/posix/EventChannelConnection.cpp | |
parent | 0df54842626c3cc065cad1a2595458f54253a178 (diff) | |
download | qpid-python-bc84e62cc549ac2d751a45d61a867354c84c60d6.tar.gz |
* Renamed Session* classes to Connection* to align with AMQP spec
- broker::SessionHandlerImpl -> broker::Connection
- broker::SessionHandlerImplFactory -> broker::ConnectionFactory
- sys::SessionHandler -> ConnectionInputHandler
- sys::SessionHandlerFactory -> ConnectionInputHandlerFactory
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496848 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/common/sys/posix/EventChannelConnection.cpp')
-rw-r--r-- | cpp/lib/common/sys/posix/EventChannelConnection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/lib/common/sys/posix/EventChannelConnection.cpp b/cpp/lib/common/sys/posix/EventChannelConnection.cpp index 196dde5af8..4449dc3035 100644 --- a/cpp/lib/common/sys/posix/EventChannelConnection.cpp +++ b/cpp/lib/common/sys/posix/EventChannelConnection.cpp @@ -22,7 +22,7 @@ #include <boost/assert.hpp> #include "EventChannelConnection.h" -#include "sys/SessionHandlerFactory.h" +#include "sys/ConnectionInputHandlerFactory.h" #include "QpidError.h" using namespace std; @@ -36,7 +36,7 @@ const size_t EventChannelConnection::bufferSize = 65536; EventChannelConnection::EventChannelConnection( EventChannelThreads::shared_ptr threads_, - SessionHandlerFactory& factory_, + ConnectionInputHandlerFactory& factory_, int rfd, int wfd, bool isTrace_ |