this.httpSession = (HttpSession) config.getUserProperties().get(HttpSession.class.getName());
this.sessionId = AuthUtil.getSessionId(httpSession);
this.session = session;
Runnable run=new SentOutputTask(sessionId, session);
Thread thread = new Thread(run);
thread.start();
}