269270271272273274275276277278279
serverChannel.configureBlocking(false); SelectionKeyHandler handler = null; if ( isHttp ) { handler = new HttpConnectionHandler(); } else { handler = new TcpConnectionHandler(localEp); }
240241242243244245246247248249250