summaryrefslogtreecommitdiff
path: root/cpp/lib/common/sys/apr/LFSessionContext.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-01-16 20:17:50 +0000
committerAlan Conway <aconway@apache.org>2007-01-16 20:17:50 +0000
commitbc84e62cc549ac2d751a45d61a867354c84c60d6 (patch)
tree160824086ea1edfd2d28f153626d378d69d0f516 /cpp/lib/common/sys/apr/LFSessionContext.h
parent0df54842626c3cc065cad1a2595458f54253a178 (diff)
downloadqpid-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/apr/LFSessionContext.h')
-rw-r--r--cpp/lib/common/sys/apr/LFSessionContext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/lib/common/sys/apr/LFSessionContext.h b/cpp/lib/common/sys/apr/LFSessionContext.h
index 9483cbe590..8cf50b87ba 100644
--- a/cpp/lib/common/sys/apr/LFSessionContext.h
+++ b/cpp/lib/common/sys/apr/LFSessionContext.h
@@ -31,7 +31,7 @@
#include <Buffer.h>
#include <sys/Monitor.h>
#include <sys/SessionContext.h>
-#include <sys/SessionHandler.h>
+#include <sys/ConnectionInputHandler.h>
#include "APRSocket.h"
#include "LFProcessor.h"
@@ -49,7 +49,7 @@ class LFSessionContext : public virtual qpid::sys::SessionContext
qpid::framing::Buffer in;
qpid::framing::Buffer out;
- qpid::sys::SessionHandler* handler;
+ qpid::sys::ConnectionInputHandler* handler;
LFProcessor* const processor;
apr_pollfd_t fd;
@@ -74,7 +74,7 @@ class LFSessionContext : public virtual qpid::sys::SessionContext
virtual void close();
void read();
void write();
- void init(qpid::sys::SessionHandler* handler);
+ void init(qpid::sys::ConnectionInputHandler* handler);
void startProcessing();
void stopProcessing();
void handleClose();