Uses of Interface
org.apache.http.nio.protocol.HttpAsyncRequestHandler
-
Packages that use HttpAsyncRequestHandler Package Description org.apache.http.impl.nio.bootstrap Embedded non-blocking server and server bootstrap.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication. -
-
Uses of HttpAsyncRequestHandler in org.apache.http.impl.nio.bootstrap
Fields in org.apache.http.impl.nio.bootstrap with type parameters of type HttpAsyncRequestHandler Modifier and Type Field Description private java.util.Map<java.lang.String,HttpAsyncRequestHandler<?>>ServerBootstrap. handlerMapMethods in org.apache.http.impl.nio.bootstrap with parameters of type HttpAsyncRequestHandler Modifier and Type Method Description ServerBootstrapServerBootstrap. registerHandler(java.lang.String pattern, HttpAsyncRequestHandler<?> handler)Registers the givenHttpAsyncRequestHandleras a handler for URIs matching the given pattern. -
Uses of HttpAsyncRequestHandler in org.apache.http.nio.protocol
Classes in org.apache.http.nio.protocol that implement HttpAsyncRequestHandler Modifier and Type Class Description classBasicAsyncRequestHandlerBasic implementation ofHttpAsyncRequestHandlerthat delegates the process of request handling to aHttpRequestHandler.(package private) classNullRequestHandlerFields in org.apache.http.nio.protocol declared as HttpAsyncRequestHandler Modifier and Type Field Description private HttpAsyncRequestHandler<java.lang.Object>HttpAsyncService.Incoming. handlerprivate HttpAsyncRequestHandler<java.lang.Object>HttpAsyncService.PipelineEntry. handlerFields in org.apache.http.nio.protocol with type parameters of type HttpAsyncRequestHandler Modifier and Type Field Description private UriPatternMatcher<HttpAsyncRequestHandler<?>>HttpAsyncRequestHandlerRegistry. matcherDeprecated.private UriPatternMatcher<HttpAsyncRequestHandler<?>>UriHttpAsyncRequestHandlerMapper. matcherMethods in org.apache.http.nio.protocol that return HttpAsyncRequestHandler Modifier and Type Method Description HttpAsyncRequestHandler<java.lang.Object>HttpAsyncService.Incoming. getHandler()HttpAsyncRequestHandler<java.lang.Object>HttpAsyncService.PipelineEntry. getHandler()private HttpAsyncRequestHandler<java.lang.Object>HttpAsyncService. getRequestHandler(HttpRequest request)HttpAsyncRequestHandler<?>HttpAsyncRequestHandlerMapper. lookup(HttpRequest request)Looks up a handler matching the given request.HttpAsyncRequestHandler<?>HttpAsyncRequestHandlerRegistry. lookup(java.lang.String requestURI)Deprecated.HttpAsyncRequestHandler<?>HttpAsyncRequestHandlerResolver. lookup(java.lang.String requestURI)Deprecated.Looks up a handler matching the given request URI.HttpAsyncRequestHandler<?>HttpAsyncService.HttpAsyncRequestHandlerResolverAdapter. lookup(HttpRequest request)Deprecated.HttpAsyncRequestHandler<?>UriHttpAsyncRequestHandlerMapper. lookup(HttpRequest request)Looks up a handler matching the given request URI.Methods in org.apache.http.nio.protocol that return types with arguments of type HttpAsyncRequestHandler Modifier and Type Method Description java.util.Map<java.lang.String,HttpAsyncRequestHandler<?>>HttpAsyncRequestHandlerRegistry. getHandlers()Deprecated.Get the handler map.UriPatternMatcher<HttpAsyncRequestHandler<?>>UriHttpAsyncRequestHandlerMapper. getUriPatternMatcher()Gets the pattern matcher.Methods in org.apache.http.nio.protocol with parameters of type HttpAsyncRequestHandler Modifier and Type Method Description voidHttpAsyncRequestHandlerRegistry. register(java.lang.String pattern, HttpAsyncRequestHandler<?> handler)Deprecated.Registers the givenHttpAsyncRequestHandleras a handler for URIs matching the given pattern.voidUriHttpAsyncRequestHandlerMapper. register(java.lang.String pattern, HttpAsyncRequestHandler<?> handler)Registers the givenHttpAsyncRequestHandleras a handler for URIs matching the given pattern.Method parameters in org.apache.http.nio.protocol with type arguments of type HttpAsyncRequestHandler Modifier and Type Method Description voidHttpAsyncRequestHandlerRegistry. setHandlers(java.util.Map<java.lang.String,HttpAsyncRequestHandler<?>> map)Deprecated.Sets handlers from the given map.Constructors in org.apache.http.nio.protocol with parameters of type HttpAsyncRequestHandler Constructor Description Incoming(HttpRequest request, HttpAsyncRequestHandler<java.lang.Object> handler, HttpAsyncRequestConsumer<java.lang.Object> consumer, HttpContext context)PipelineEntry(HttpRequest request, java.lang.Object result, java.lang.Exception exception, HttpAsyncRequestHandler<java.lang.Object> handler, HttpContext context)Constructor parameters in org.apache.http.nio.protocol with type arguments of type HttpAsyncRequestHandler Constructor Description UriHttpAsyncRequestHandlerMapper(UriPatternMatcher<HttpAsyncRequestHandler<?>> matcher)
-