Uses of Interface
org.apache.hc.core5.http.io.HttpRequestHandler
Packages that use HttpRequestHandler
Package
Description
HTTP/1.1 requester and server bootstrap.
Default implementation of HTTP/1.1 transport based on the classic
(blocking) I/O model.
Support classes for 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 HttpRequestHandlerModifier and TypeFieldDescriptionprivate final List
<HandlerEntry<HttpRequestHandler>> ServerBootstrap.handlerList
private LookupRegistry
<HttpRequestHandler> ServerBootstrap.lookupRegistry
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpRequestHandlerModifier and TypeMethodDescriptionfinal ServerBootstrap
ServerBootstrap.register
(String uriPattern, HttpRequestHandler requestHandler) Registers the givenHttpRequestHandler
as a default handler for URIs matching the given pattern.final ServerBootstrap
ServerBootstrap.registerVirtual
(String hostname, String uriPattern, HttpRequestHandler requestHandler) Registers the givenHttpRequestHandler
as a handler for URIs matching the given host and the pattern.Method parameters in org.apache.hc.core5.http.impl.bootstrap with type arguments of type HttpRequestHandlerModifier and TypeMethodDescriptionfinal ServerBootstrap
ServerBootstrap.setLookupRegistry
(LookupRegistry<HttpRequestHandler> lookupRegistry) AssignsLookupRegistry
instance. -
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 HttpRequestHandlerModifierConstructorDescriptionHttpService
(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 HttpRequestHandlerModifier and TypeFieldDescriptionprivate final HttpRequestMapper
<HttpRequestHandler> BasicHttpServerRequestHandler.handlerMapper
private final HttpRequestMapper
<HttpRequestHandler> TerminalServerFilter.handlerMapper
Constructor parameters in org.apache.hc.core5.http.io.support with type arguments of type HttpRequestHandlerModifierConstructorDescriptionBasicHttpServerRequestHandler
(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.testing.classic
Fields in org.apache.hc.core5.testing.classic with type parameters of type HttpRequestHandlerModifier and TypeFieldDescriptionprivate final RequestHandlerRegistry
<HttpRequestHandler> ClassicTestServer.registry
Methods in org.apache.hc.core5.testing.classic with parameters of type HttpRequestHandlerModifier and TypeMethodDescriptionvoid
ClassicTestServer.registerHandler
(String pattern, HttpRequestHandler handler) void
ClassicTestServer.registerHandlerVirtual
(String hostname, String pattern, HttpRequestHandler handler) -
Uses of HttpRequestHandler in org.apache.hc.core5.testing.framework
Classes in org.apache.hc.core5.testing.framework that implement HttpRequestHandler