Uses of Interface
org.apache.hc.core5.http.nio.AsyncFilterHandler
-
Packages that use AsyncFilterHandler Package Description org.apache.hc.core5.http.impl.bootstrap HTTP/1.1 requester and server bootstrap.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model.org.apache.hc.core5.http2.impl.nio.bootstrap 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 AsyncFilterHandler Modifier and Type Field Description private java.util.List<FilterEntry<AsyncFilterHandler>>
AsyncServerBootstrap. filters
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncFilterHandler Modifier and Type Method Description AsyncServerBootstrap
AsyncServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)
Adds the filter after the filter with the given name.AsyncServerBootstrap
AsyncServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)
Adds the filter before the filter with the given name.AsyncServerBootstrap
AsyncServerBootstrap. addFilterFirst(java.lang.String name, AsyncFilterHandler filterHandler)
Add an filter to the head of the processing list.AsyncServerBootstrap
AsyncServerBootstrap. addFilterLast(java.lang.String name, AsyncFilterHandler filterHandler)
Add an filter to the tail of the processing list.AsyncServerBootstrap
AsyncServerBootstrap. replaceFilter(java.lang.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 AsyncFilterHandler Modifier and Type Class Description class
AbstractAsyncServerAuthFilter<T>
Abstract asynchronous HTTP request filter that implements standard HTTP authentication handshake.class
AsyncServerExpectationFilter
class
TerminalAsyncServerFilter
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 AsyncFilterHandler Modifier and Type Field Description private AsyncFilterHandler
AsyncServerFilterChainElement. handler
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncFilterHandler Constructor Description AsyncServerFilterChainElement(AsyncFilterHandler handler, AsyncServerFilterChainElement next)
-
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 AsyncFilterHandler Modifier and Type Field Description private java.util.List<FilterEntry<AsyncFilterHandler>>
H2ServerBootstrap. filters
Methods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type AsyncFilterHandler Modifier and Type Method Description H2ServerBootstrap
H2ServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)
Adds the filter after the filter with the given name.H2ServerBootstrap
H2ServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)
Adds the filter before the filter with the given name.H2ServerBootstrap
H2ServerBootstrap. addFilterFirst(java.lang.String name, AsyncFilterHandler filterHandler)
Add an filter to the head of the processing list.H2ServerBootstrap
H2ServerBootstrap. addFilterLast(java.lang.String name, AsyncFilterHandler filterHandler)
Add an filter to the tail of the processing list.H2ServerBootstrap
H2ServerBootstrap. replaceFilter(java.lang.String existing, AsyncFilterHandler filterHandler)
Replace an existing filter with the given name with new filter.
-