Uses of Interface
org.apache.hc.core5.http.io.HttpRequestHandler
-
Packages that use HttpRequestHandler Package Description org.apache.hc.core5.http.impl.bootstrap HTTP/1.1 requester and server bootstrap.org.apache.hc.core5.http.impl.io Default implementation of HTTP/1.1 transport based on the classic (blocking) I/O model.org.apache.hc.core5.http.io.support Support classes for the classic (blocking) I/O model.org.apache.hc.core5.http.nio.support.classic Support classes for the asynchronous I/O model that emulate behavior of the classic (blocking) I/O model. -
-
Uses of HttpRequestHandler in org.apache.hc.core5.http.impl.bootstrap
Fields in org.apache.hc.core5.http.impl.bootstrap with type parameters of type HttpRequestHandler Modifier and Type Field Description private LookupRegistry<HttpRequestHandler>ServerBootstrap. lookupRegistryprivate HttpRequestMapper<HttpRequestHandler>ServerBootstrap. requestRouterprivate java.util.List<RequestRouter.Entry<HttpRequestHandler>>ServerBootstrap. routeEntriesMethods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpRequestHandler Modifier and Type Method Description ServerBootstrapServerBootstrap. register(java.lang.String hostname, java.lang.String uriPattern, HttpRequestHandler requestHandler)Registers the givenHttpRequestHandleras a handler for URIs matching the given host and the pattern.ServerBootstrapServerBootstrap. register(java.lang.String uriPattern, HttpRequestHandler requestHandler)Registers the givenHttpRequestHandleras a default handler for URIs matching the given pattern.ServerBootstrapServerBootstrap. registerVirtual(java.lang.String hostname, java.lang.String uriPattern, HttpRequestHandler requestHandler)Deprecated.Method parameters in org.apache.hc.core5.http.impl.bootstrap with type arguments of type HttpRequestHandler Modifier and Type Method Description ServerBootstrapServerBootstrap. setLookupRegistry(LookupRegistry<HttpRequestHandler> lookupRegistry)Deprecated.UseRequestRouter.ServerBootstrapServerBootstrap. setRequestRouter(HttpRequestMapper<HttpRequestHandler> requestRouter)SetsHttpRequestMapperinstance. -
Uses of HttpRequestHandler in org.apache.hc.core5.http.impl.io
Constructor parameters in org.apache.hc.core5.http.impl.io with type arguments of type HttpRequestHandler Constructor Description HttpService(HttpProcessor processor, HttpRequestMapper<HttpRequestHandler> handlerMapper, ConnectionReuseStrategy connReuseStrategy, HttpResponseFactory<ClassicHttpResponse> responseFactory)Create a new HTTP service.HttpService(HttpProcessor processor, HttpRequestMapper<HttpRequestHandler> handlerMapper, ConnectionReuseStrategy connReuseStrategy, HttpResponseFactory<ClassicHttpResponse> responseFactory, Http1StreamListener streamListener)Create a new HTTP service. -
Uses of HttpRequestHandler in org.apache.hc.core5.http.io.support
Fields in org.apache.hc.core5.http.io.support with type parameters of type HttpRequestHandler Modifier and Type Field Description private HttpRequestMapper<HttpRequestHandler>BasicHttpServerRequestHandler. handlerMapperprivate HttpRequestMapper<HttpRequestHandler>TerminalServerFilter. handlerMapperConstructor parameters in org.apache.hc.core5.http.io.support with type arguments of type HttpRequestHandler Constructor Description BasicHttpServerRequestHandler(HttpRequestMapper<HttpRequestHandler> handlerMapper)BasicHttpServerRequestHandler(HttpRequestMapper<HttpRequestHandler> handlerMapper, HttpResponseFactory<ClassicHttpResponse> responseFactory)TerminalServerFilter(HttpRequestMapper<HttpRequestHandler> handlerMapper, HttpResponseFactory<ClassicHttpResponse> responseFactory) -
Uses of HttpRequestHandler in org.apache.hc.core5.http.nio.support.classic
Constructors in org.apache.hc.core5.http.nio.support.classic with parameters of type HttpRequestHandler Constructor Description ClassicToAsyncServerExchangeHandler(java.util.concurrent.Executor executor, HttpRequestHandler handler, Callback<java.lang.Exception> exceptionCallback)Constructor parameters in org.apache.hc.core5.http.nio.support.classic with type arguments of type HttpRequestHandler Constructor Description ClassicToAsyncServerExchangeHandler(java.util.concurrent.Executor executor, HttpRequestMapper<HttpRequestHandler> handlerMapper, Callback<java.lang.Exception> exceptionCallback)
-