comparison src/org/eclipse/jetty/server/nio/SelectChannelConnector.java @ 956:1094975d013b

remove setCheckForIdle()
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 13 Oct 2016 18:11:01 -0600
parents a021c4c9c244
children fc521d2f098e
comparison
equal deleted inserted replaced
955:6f49b8dfffe6 956:1094975d013b
87 endpoint.setMaxIdleTime(_maxIdleTime); 87 endpoint.setMaxIdleTime(_maxIdleTime);
88 super.customize(endpoint, request); 88 super.customize(endpoint, request);
89 } 89 }
90 90
91 @Override 91 @Override
92 public void persist(EndPoint endpoint) throws IOException
93 {
94 AsyncEndPoint aEndp = ((AsyncEndPoint)endpoint);
95 aEndp.setCheckForIdle(true);
96 super.persist(endpoint);
97 }
98
99 @Override
100 protected synchronized void doStart() throws Exception 92 protected synchronized void doStart() throws Exception
101 { 93 {
102 // _manager.setMaxIdleTime(getMaxIdleTime()); 94 // _manager.setMaxIdleTime(getMaxIdleTime());
103 _manager.setLowResourcesConnections(0); 95 _manager.setLowResourcesConnections(0);
104 96