Uses of Interface
org.apache.http.nio.protocol.HttpAsyncRequestHandler

Packages that use HttpAsyncRequestHandler
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
 

Methods in org.apache.http.impl.nio.bootstrap with parameters of type HttpAsyncRequestHandler
 ServerBootstrap ServerBootstrap.registerHandler(String pattern, HttpAsyncRequestHandler<?> handler)
          Registers the given HttpAsyncRequestHandler as 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
 class BasicAsyncRequestHandler
          Basic implementation of HttpAsyncRequestHandler that delegates the process of request handling to a HttpRequestHandler.
 

Methods in org.apache.http.nio.protocol that return HttpAsyncRequestHandler
 HttpAsyncRequestHandler<?> HttpAsyncRequestHandlerMapper.lookup(HttpRequest request)
          Looks up a handler matching the given request.
 HttpAsyncRequestHandler<?> UriHttpAsyncRequestHandlerMapper.lookup(HttpRequest request)
          Looks up a handler matching the given request URI.
 HttpAsyncRequestHandler<?> HttpAsyncRequestHandlerRegistry.lookup(String requestURI)
          Deprecated.  
 HttpAsyncRequestHandler<?> HttpAsyncRequestHandlerResolver.lookup(String requestURI)
          Deprecated. Looks up a handler matching the given request URI.
 

Methods in org.apache.http.nio.protocol that return types with arguments of type HttpAsyncRequestHandler
 Map<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
 void HttpAsyncRequestHandlerRegistry.register(String pattern, HttpAsyncRequestHandler<?> handler)
          Deprecated. Registers the given HttpAsyncRequestHandler as a handler for URIs matching the given pattern.
 void UriHttpAsyncRequestHandlerMapper.register(String pattern, HttpAsyncRequestHandler<?> handler)
          Registers the given HttpAsyncRequestHandler as a handler for URIs matching the given pattern.
 

Method parameters in org.apache.http.nio.protocol with type arguments of type HttpAsyncRequestHandler
 void HttpAsyncRequestHandlerRegistry.setHandlers(Map<String,HttpAsyncRequestHandler<?>> map)
          Deprecated. Sets handlers from the given map.
 

Constructor parameters in org.apache.http.nio.protocol with type arguments of type HttpAsyncRequestHandler
UriHttpAsyncRequestHandlerMapper(UriPatternMatcher<HttpAsyncRequestHandler<?>> matcher)
           
 



Copyright © 2005–2021 The Apache Software Foundation. All rights reserved.