399520 - Websocket Server Connection needs session idle timeouts
This commit is contained in:
parent
246db2b08d
commit
660f6d2e85
|
@ -145,6 +145,7 @@ public abstract class AbstractWebSocketConnection extends AbstractConnection imp
|
|||
public AbstractWebSocketConnection(EndPoint endp, Executor executor, Scheduler scheduler, WebSocketPolicy policy, ByteBufferPool bufferPool)
|
||||
{
|
||||
super(endp,executor,EXECUTE_ONFILLABLE); // TODO review if this is best. Specifically with MUX
|
||||
endp.setIdleTimeout(policy.getIdleTimeout());
|
||||
this.policy = policy;
|
||||
this.bufferPool = bufferPool;
|
||||
this.generator = new Generator(policy,bufferPool);
|
||||
|
|
Loading…
Reference in New Issue