Uses of Interface
org.apache.hc.core5.http.nio.AsyncServerRequestHandler
Packages that use AsyncServerRequestHandler
Package
Description
HTTP/1.1 requester and server bootstrap.
Support classes for the asynchronous I/O model.
HTTP/2 capable requester and server bootstrap.
-
Uses of AsyncServerRequestHandler in org.apache.hc.core5.http.impl.bootstrap
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncServerRequestHandlerModifier and TypeMethodDescriptionfinal <T> AsyncServerBootstrap
AsyncServerBootstrap.register
(String uriPattern, AsyncServerRequestHandler<T> requestHandler) Registers the givenAsyncServerRequestHandler
as a default handler for URIs matching the given pattern.final <T> AsyncServerBootstrap
AsyncServerBootstrap.registerVirtual
(String hostname, String uriPattern, AsyncServerRequestHandler<T> requestHandler) Registers the givenAsyncServerRequestHandler
as a handler for URIs matching the given host and the pattern. -
Uses of AsyncServerRequestHandler in org.apache.hc.core5.http.nio.support
Fields in org.apache.hc.core5.http.nio.support declared as AsyncServerRequestHandlerModifier and TypeFieldDescriptionprivate final AsyncServerRequestHandler
<T> BasicServerExchangeHandler.requestHandler
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncServerRequestHandlerModifierConstructorDescriptionBasicServerExchangeHandler
(AsyncServerRequestHandler<T> requestHandler) -
Uses of AsyncServerRequestHandler in org.apache.hc.core5.http2.impl.nio.bootstrap
Methods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type AsyncServerRequestHandlerModifier and TypeMethodDescriptionfinal <T> H2ServerBootstrap
H2ServerBootstrap.register
(String uriPattern, AsyncServerRequestHandler<T> requestHandler) Registers the givenAsyncServerRequestHandler
as a default handler for URIs matching the given pattern.final <T> H2ServerBootstrap
H2ServerBootstrap.registerVirtual
(String hostname, String uriPattern, AsyncServerRequestHandler<T> requestHandler) Registers the givenAsyncServerRequestHandler
as a handler for URIs matching the given host and the pattern. -
Uses of AsyncServerRequestHandler in org.apache.hc.core5.testing.nio
Methods in org.apache.hc.core5.testing.nio with parameters of type AsyncServerRequestHandlerModifier and TypeMethodDescription<T> void
H2TestServer.register
(String uriPattern, AsyncServerRequestHandler<T> requestHandler) <T> void
Http1TestServer.register
(String uriPattern, AsyncServerRequestHandler<T> requestHandler)