Uses of Interface
org.apache.hc.core5.http.nio.AsyncServerRequestHandler
-
Packages that use AsyncServerRequestHandler Package Description org.apache.hc.core5.http.impl.bootstrap HTTP/1.1 requester and server bootstrap.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model.org.apache.hc.core5.http2.impl.nio.bootstrap HTTP/2 capable requester and server bootstrap.org.apache.hc.core5.testing.nio -
-
Uses of AsyncServerRequestHandler in org.apache.hc.core5.http.impl.bootstrap
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncServerRequestHandler Modifier and Type Method Description <T> AsyncServerBootstrap
AsyncServerBootstrap. register(java.lang.String uriPattern, AsyncServerRequestHandler<T> requestHandler)
Registers the givenAsyncServerRequestHandler
as a default handler for URIs matching the given pattern.<T> AsyncServerBootstrap
AsyncServerBootstrap. registerVirtual(java.lang.String hostname, java.lang.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 AsyncServerRequestHandler Modifier and Type Field Description private AsyncServerRequestHandler<T>
BasicServerExchangeHandler. requestHandler
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncServerRequestHandler Constructor Description BasicServerExchangeHandler(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 AsyncServerRequestHandler Modifier and Type Method Description <T> H2ServerBootstrap
H2ServerBootstrap. register(java.lang.String uriPattern, AsyncServerRequestHandler<T> requestHandler)
Registers the givenAsyncServerRequestHandler
as a default handler for URIs matching the given pattern.<T> H2ServerBootstrap
H2ServerBootstrap. registerVirtual(java.lang.String hostname, java.lang.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 AsyncServerRequestHandler Modifier and Type Method Description <T> void
H2TestServer. register(java.lang.String uriPattern, AsyncServerRequestHandler<T> requestHandler)
<T> void
Http1TestServer. register(java.lang.String uriPattern, AsyncServerRequestHandler<T> requestHandler)
-