use of com.generallycloud.baseio.container.http11.HttpSessionManager in project baseio by generallycloud.
the class HttpFutureAcceptorService method accept.
@Override
public void accept(SocketSession session, Future future) throws Exception {
HttpSessionManager manager = context.getHttpSessionManager();
HttpFuture httpReadFuture = (HttpFuture) future;
HttpSession httpSession = manager.getHttpSession(context, session, httpReadFuture);
doAccept(httpSession, httpReadFuture);
}
Aggregations