mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-06 05:49:50 +00:00
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…
x
Reference in New Issue
Block a user