From 2f6d6ad7efd788b71204af67dff51b6233881e2e Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 21 Sep 2007 18:26:37 +0000 Subject: Split broker::Session into: broker::SessionState: session info (uuid etc.) + handler chains. broker::SemanticState: session state for the SemanticHandler. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@578219 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/SessionHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/broker/SessionHandler.cpp') diff --git a/cpp/src/qpid/broker/SessionHandler.cpp b/cpp/src/qpid/broker/SessionHandler.cpp index 01ce88059a..13e5c247be 100644 --- a/cpp/src/qpid/broker/SessionHandler.cpp +++ b/cpp/src/qpid/broker/SessionHandler.cpp @@ -19,7 +19,7 @@ */ #include "SessionHandler.h" -#include "Session.h" +#include "SessionState.h" #include "Connection.h" #include "qpid/framing/reply_exceptions.h" #include "qpid/framing/constants.h" @@ -94,7 +94,7 @@ void SessionHandler::assertClosed(const char* method) { void SessionHandler::open(uint32_t detachedLifetime) { assertClosed("open"); - session.reset(new Session(*this, detachedLifetime)); + session.reset(new SessionState(*this, detachedLifetime)); getProxy().getSession().attached(session->getId(), session->getTimeout()); } -- cgit v1.2.1