Uses of Interface
org.apache.hc.core5.http.nio.AsyncFilterHandler
Packages that use AsyncFilterHandler
Package
Description
HTTP/1.1 requester and server bootstrap.
Support classes for the asynchronous I/O model.
HTTP/2 capable requester and server bootstrap.
-
Uses of AsyncFilterHandler in org.apache.hc.core5.http.impl.bootstrap
Fields in org.apache.hc.core5.http.impl.bootstrap with type parameters of type AsyncFilterHandlerModifier and TypeFieldDescriptionprivate final List
<FilterEntry<AsyncFilterHandler>> AsyncServerBootstrap.filters
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncFilterHandlerModifier and TypeMethodDescriptionfinal AsyncServerBootstrap
AsyncServerBootstrap.addFilterAfter
(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter after the filter with the given name.final AsyncServerBootstrap
AsyncServerBootstrap.addFilterBefore
(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter before the filter with the given name.final AsyncServerBootstrap
AsyncServerBootstrap.addFilterFirst
(String name, AsyncFilterHandler filterHandler) Add an filter to the head of the processing list.final AsyncServerBootstrap
AsyncServerBootstrap.addFilterLast
(String name, AsyncFilterHandler filterHandler) Add an filter to the tail of the processing list.final AsyncServerBootstrap
AsyncServerBootstrap.replaceFilter
(String existing, AsyncFilterHandler filterHandler) Replace an existing filter with the given name with new filter. -
Uses of AsyncFilterHandler in org.apache.hc.core5.http.nio.support
Classes in org.apache.hc.core5.http.nio.support that implement AsyncFilterHandlerModifier and TypeClassDescriptionclass
Abstract asynchronous HTTP request filter that implements standard HTTP authentication handshake.class
final class
AsyncFilterHandler
implementation represents a terminal handler in an asynchronous request processing pipeline that makes use ofHandlerFactory
to dispatch the request to a particularAsyncServerExchangeHandler
.Fields in org.apache.hc.core5.http.nio.support declared as AsyncFilterHandlerModifier and TypeFieldDescriptionprivate final AsyncFilterHandler
AsyncServerFilterChainElement.handler
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncFilterHandlerModifierConstructorDescription -
Uses of AsyncFilterHandler in org.apache.hc.core5.http2.impl.nio.bootstrap
Fields in org.apache.hc.core5.http2.impl.nio.bootstrap with type parameters of type AsyncFilterHandlerModifier and TypeFieldDescriptionprivate final List
<FilterEntry<AsyncFilterHandler>> H2ServerBootstrap.filters
Methods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type AsyncFilterHandlerModifier and TypeMethodDescriptionfinal H2ServerBootstrap
H2ServerBootstrap.addFilterAfter
(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter after the filter with the given name.final H2ServerBootstrap
H2ServerBootstrap.addFilterBefore
(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter before the filter with the given name.final H2ServerBootstrap
H2ServerBootstrap.addFilterFirst
(String name, AsyncFilterHandler filterHandler) Add an filter to the head of the processing list.final H2ServerBootstrap
H2ServerBootstrap.addFilterLast
(String name, AsyncFilterHandler filterHandler) Add an filter to the tail of the processing list.final H2ServerBootstrap
H2ServerBootstrap.replaceFilter
(String existing, AsyncFilterHandler filterHandler) Replace an existing filter with the given name with new filter.