H2ServerBootstrap |
H2ServerBootstrap.addFilterAfter(java.lang.String existing,
java.lang.String name,
AsyncFilterHandler filterHandler) |
Adds the filter after the filter with the given name.
|
H2ServerBootstrap |
H2ServerBootstrap.addFilterBefore(java.lang.String existing,
java.lang.String name,
AsyncFilterHandler filterHandler) |
Adds the filter before the filter with the given name.
|
H2ServerBootstrap |
H2ServerBootstrap.addFilterFirst(java.lang.String name,
AsyncFilterHandler filterHandler) |
Add an filter to the head of the processing list.
|
H2ServerBootstrap |
H2ServerBootstrap.addFilterLast(java.lang.String name,
AsyncFilterHandler filterHandler) |
Add an filter to the tail of the processing list.
|
static H2ServerBootstrap |
H2ServerBootstrap.bootstrap() |
|
H2ServerBootstrap |
H2ServerBootstrap.register(java.lang.String uriPattern,
Supplier<AsyncServerExchangeHandler> supplier) |
|
<T> H2ServerBootstrap |
H2ServerBootstrap.register(java.lang.String uriPattern,
AsyncServerRequestHandler<T> requestHandler) |
|
H2ServerBootstrap |
H2ServerBootstrap.registerVirtual(java.lang.String hostname,
java.lang.String uriPattern,
Supplier<AsyncServerExchangeHandler> supplier) |
|
<T> H2ServerBootstrap |
H2ServerBootstrap.registerVirtual(java.lang.String hostname,
java.lang.String uriPattern,
AsyncServerRequestHandler<T> requestHandler) |
|
H2ServerBootstrap |
H2ServerBootstrap.replaceFilter(java.lang.String existing,
AsyncFilterHandler filterHandler) |
Replace an existing filter with the given name with new filter.
|
H2ServerBootstrap |
H2ServerBootstrap.setCanonicalHostName(java.lang.String canonicalHostName) |
Sets canonical name (fully qualified domain name) of the server.
|
H2ServerBootstrap |
H2ServerBootstrap.setCharset(CharCodingConfig charCodingConfig) |
Sets message char coding.
|
H2ServerBootstrap |
H2ServerBootstrap.setExceptionCallback(Callback<java.lang.Exception> exceptionCallback) |
|
H2ServerBootstrap |
H2ServerBootstrap.setH2Config(H2Config h2Config) |
Sets HTTP/2 protocol parameters
|
H2ServerBootstrap |
H2ServerBootstrap.setHandshakeTimeout(Timeout handshakeTimeout) |
|
H2ServerBootstrap |
H2ServerBootstrap.setHttp1Config(Http1Config http1Config) |
Sets HTTP/1.1 protocol parameters
|
H2ServerBootstrap |
H2ServerBootstrap.setHttpProcessor(HttpProcessor httpProcessor) |
|
H2ServerBootstrap |
H2ServerBootstrap.setIOReactorConfig(IOReactorConfig ioReactorConfig) |
Sets I/O reactor configuration.
|
H2ServerBootstrap |
H2ServerBootstrap.setIOSessionDecorator(Decorator<IOSession> ioSessionDecorator) |
|
H2ServerBootstrap |
H2ServerBootstrap.setIOSessionListener(IOSessionListener sessionListener) |
|
H2ServerBootstrap |
H2ServerBootstrap.setLookupRegistry(LookupRegistry<Supplier<AsyncServerExchangeHandler>> lookupRegistry) |
|
H2ServerBootstrap |
H2ServerBootstrap.setStreamListener(Http1StreamListener http1StreamListener) |
|
H2ServerBootstrap |
H2ServerBootstrap.setStreamListener(H2StreamListener h2StreamListener) |
|
H2ServerBootstrap |
H2ServerBootstrap.setTlsStrategy(TlsStrategy tlsStrategy) |
|
H2ServerBootstrap |
H2ServerBootstrap.setVersionPolicy(HttpVersionPolicy versionPolicy) |
Sets HTTP protocol version policy
|