Package org.apache.http.nio.protocol
Interface HttpAsyncRequestHandlerResolver
-
- All Known Implementing Classes:
HttpAsyncRequestHandlerRegistry
@Deprecated public interface HttpAsyncRequestHandlerResolverDeprecated.HttpAsyncRequestHandlerResolvercan be used to map an instance ofHttpAsyncRequestHandlermatching a particular request URI. Usually the mapped request handler will be used to process the request with the specified request URI.- Since:
- 4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description HttpAsyncRequestHandler<?>lookup(java.lang.String requestURI)Deprecated.Looks up a handler matching the given request URI.
-
-
-
Method Detail
-
lookup
HttpAsyncRequestHandler<?> lookup(java.lang.String requestURI)
Deprecated.Looks up a handler matching the given request URI.- Parameters:
requestURI- the request URI- Returns:
- HTTP request handler or
nullif no match is found.
-
-