ServerBootstrap |
ServerBootstrap.addFilterAfter(java.lang.String existing,
java.lang.String name,
HttpFilterHandler filterHandler) |
Adds the filter after the filter with the given name.
|
ServerBootstrap |
ServerBootstrap.addFilterBefore(java.lang.String existing,
java.lang.String name,
HttpFilterHandler filterHandler) |
Adds the filter before the filter with the given name.
|
ServerBootstrap |
ServerBootstrap.addFilterFirst(java.lang.String name,
HttpFilterHandler filterHandler) |
Add an filter to the head of the processing list.
|
ServerBootstrap |
ServerBootstrap.addFilterLast(java.lang.String name,
HttpFilterHandler filterHandler) |
Add an filter to the tail of the processing list.
|
static ServerBootstrap |
ServerBootstrap.bootstrap() |
|
ServerBootstrap |
ServerBootstrap.register(java.lang.String uriPattern,
HttpRequestHandler requestHandler) |
Registers the given HttpRequestHandler as a default handler for URIs
matching the given pattern.
|
ServerBootstrap |
ServerBootstrap.registerVirtual(java.lang.String hostname,
java.lang.String uriPattern,
HttpRequestHandler requestHandler) |
Registers the given HttpRequestHandler as a handler for URIs
matching the given host and the pattern.
|
ServerBootstrap |
ServerBootstrap.replaceFilter(java.lang.String existing,
HttpFilterHandler filterHandler) |
Replace an existing filter with the given name with new filter.
|
ServerBootstrap |
ServerBootstrap.setCanonicalHostName(java.lang.String canonicalHostName) |
Sets canonical name (fully qualified domain name) of the server.
|
ServerBootstrap |
ServerBootstrap.setCharCodingConfig(CharCodingConfig charCodingConfig) |
Sets connection configuration.
|
ServerBootstrap |
ServerBootstrap.setConnectionFactory(HttpConnectionFactory<? extends DefaultBHttpServerConnection> connectionFactory) |
|
ServerBootstrap |
ServerBootstrap.setConnectionReuseStrategy(ConnectionReuseStrategy connStrategy) |
|
ServerBootstrap |
ServerBootstrap.setExceptionListener(ExceptionListener exceptionListener) |
|
ServerBootstrap |
ServerBootstrap.setHttp1Config(Http1Config http1Config) |
Sets connection configuration.
|
ServerBootstrap |
ServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) |
|
ServerBootstrap |
ServerBootstrap.setListenerPort(int listenerPort) |
Sets listener port number.
|
ServerBootstrap |
ServerBootstrap.setLocalAddress(java.net.InetAddress localAddress) |
Assigns local interface for the listener.
|
ServerBootstrap |
ServerBootstrap.setLookupRegistry(LookupRegistry<HttpRequestHandler> lookupRegistry) |
|
ServerBootstrap |
ServerBootstrap.setResponseFactory(HttpResponseFactory<ClassicHttpResponse> responseFactory) |
|
ServerBootstrap |
ServerBootstrap.setServerSocketFactory(javax.net.ServerSocketFactory serverSocketFactory) |
Assigns ServerSocketFactory instance.
|
ServerBootstrap |
ServerBootstrap.setSocketConfig(SocketConfig socketConfig) |
Sets socket configuration.
|
ServerBootstrap |
ServerBootstrap.setSslContext(javax.net.ssl.SSLContext sslContext) |
Assigns SSLContext instance.
|
ServerBootstrap |
ServerBootstrap.setSslSetupHandler(Callback<javax.net.ssl.SSLParameters> sslSetupHandler) |
|
ServerBootstrap |
ServerBootstrap.setStreamListener(Http1StreamListener streamListener) |
|