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. filtersMethods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncFilterHandler Modifier and Type Method Description AsyncServerBootstrapAsyncServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)Adds the filter after the filter with the given name.AsyncServerBootstrapAsyncServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)Adds the filter before the filter with the given name.AsyncServerBootstrapAsyncServerBootstrap. addFilterFirst(java.lang.String name, AsyncFilterHandler filterHandler)Add an filter to the head of the processing list.AsyncServerBootstrapAsyncServerBootstrap. addFilterLast(java.lang.String name, AsyncFilterHandler filterHandler)Add an filter to the tail of the processing list.AsyncServerBootstrapAsyncServerBootstrap. 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 classAbstractAsyncServerAuthFilter<T>Abstract asynchronous HTTP request filter that implements standard HTTP authentication handshake.classAsyncServerExpectationFilterclassTerminalAsyncServerFilterAsyncFilterHandlerimplementation represents a terminal handler in an asynchronous request processing pipeline that makes use ofHandlerFactoryto dispatch the request to a particularAsyncServerExchangeHandler.Fields in org.apache.hc.core5.http.nio.support declared as AsyncFilterHandler Modifier and Type Field Description private AsyncFilterHandlerAsyncServerFilterChainElement. handlerConstructors 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. filtersMethods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type AsyncFilterHandler Modifier and Type Method Description H2ServerBootstrapH2ServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)Adds the filter after the filter with the given name.H2ServerBootstrapH2ServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, AsyncFilterHandler filterHandler)Adds the filter before the filter with the given name.H2ServerBootstrapH2ServerBootstrap. addFilterFirst(java.lang.String name, AsyncFilterHandler filterHandler)Add an filter to the head of the processing list.H2ServerBootstrapH2ServerBootstrap. addFilterLast(java.lang.String name, AsyncFilterHandler filterHandler)Add an filter to the tail of the processing list.H2ServerBootstrapH2ServerBootstrap. replaceFilter(java.lang.String existing, AsyncFilterHandler filterHandler)Replace an existing filter with the given name with new filter.
-