AsyncServerBootstrap |
AsyncServerBootstrap.addFilterAfter(java.lang.String existing,
java.lang.String name,
AsyncFilterHandler filterHandler) |
Adds the filter after the filter with the given name.
|
AsyncServerBootstrap |
AsyncServerBootstrap.addFilterBefore(java.lang.String existing,
java.lang.String name,
AsyncFilterHandler filterHandler) |
Adds the filter before the filter with the given name.
|
AsyncServerBootstrap |
AsyncServerBootstrap.addFilterFirst(java.lang.String name,
AsyncFilterHandler filterHandler) |
Add an filter to the head of the processing list.
|
AsyncServerBootstrap |
AsyncServerBootstrap.addFilterLast(java.lang.String name,
AsyncFilterHandler filterHandler) |
Add an filter to the tail of the processing list.
|
static AsyncServerBootstrap |
AsyncServerBootstrap.bootstrap() |
|
AsyncServerBootstrap |
AsyncServerBootstrap.register(java.lang.String uriPattern,
Supplier<AsyncServerExchangeHandler> supplier) |
|
<T> AsyncServerBootstrap |
AsyncServerBootstrap.register(java.lang.String uriPattern,
AsyncServerRequestHandler<T> requestHandler) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.registerVirtual(java.lang.String hostname,
java.lang.String uriPattern,
Supplier<AsyncServerExchangeHandler> supplier) |
|
<T> AsyncServerBootstrap |
AsyncServerBootstrap.registerVirtual(java.lang.String hostname,
java.lang.String uriPattern,
AsyncServerRequestHandler<T> requestHandler) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.replaceFilter(java.lang.String existing,
AsyncFilterHandler filterHandler) |
Replace an existing filter with the given name with new filter.
|
AsyncServerBootstrap |
AsyncServerBootstrap.setCanonicalHostName(java.lang.String canonicalHostName) |
Sets canonical name (fully qualified domain name) of the server.
|
AsyncServerBootstrap |
AsyncServerBootstrap.setCharCodingConfig(CharCodingConfig charCodingConfig) |
Sets connection configuration.
|
AsyncServerBootstrap |
AsyncServerBootstrap.setConnectionReuseStrategy(ConnectionReuseStrategy connStrategy) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setExceptionCallback(Callback<java.lang.Exception> exceptionCallback) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setHttp1Config(Http1Config http1Config) |
Sets HTTP/1.1 protocol parameters.
|
AsyncServerBootstrap |
AsyncServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setIOReactorConfig(IOReactorConfig ioReactorConfig) |
Sets I/O reactor configuration.
|
AsyncServerBootstrap |
AsyncServerBootstrap.setIOSessionDecorator(Decorator<IOSession> ioSessionDecorator) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setIOSessionListener(IOSessionListener sessionListener) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setLookupRegistry(LookupRegistry<Supplier<AsyncServerExchangeHandler>> lookupRegistry) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setStreamListener(Http1StreamListener streamListener) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setTlsHandshakeTimeout(Timeout handshakeTimeout) |
|
AsyncServerBootstrap |
AsyncServerBootstrap.setTlsStrategy(TlsStrategy tlsStrategy) |
|