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.filtersMethods in org.apache.hc.core5.http.impl.bootstrap with parameters of type AsyncFilterHandlerModifier and TypeMethodDescriptionfinal AsyncServerBootstrapAsyncServerBootstrap.addFilterAfter(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter after the filter with the given name.final AsyncServerBootstrapAsyncServerBootstrap.addFilterBefore(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter before the filter with the given name.final AsyncServerBootstrapAsyncServerBootstrap.addFilterFirst(String name, AsyncFilterHandler filterHandler) Add an filter to the head of the processing list.final AsyncServerBootstrapAsyncServerBootstrap.addFilterLast(String name, AsyncFilterHandler filterHandler) Add an filter to the tail of the processing list.final AsyncServerBootstrapAsyncServerBootstrap.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 TypeClassDescriptionclassAbstract asynchronous HTTP request filter that implements standard HTTP authentication handshake.classfinal classAsyncFilterHandlerimplementation 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 AsyncFilterHandlerModifier and TypeFieldDescriptionprivate final AsyncFilterHandlerAsyncServerFilterChainElement.handlerConstructors 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.filtersMethods in org.apache.hc.core5.http2.impl.nio.bootstrap with parameters of type AsyncFilterHandlerModifier and TypeMethodDescriptionfinal H2ServerBootstrapH2ServerBootstrap.addFilterAfter(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter after the filter with the given name.final H2ServerBootstrapH2ServerBootstrap.addFilterBefore(String existing, String name, AsyncFilterHandler filterHandler) Adds the filter before the filter with the given name.final H2ServerBootstrapH2ServerBootstrap.addFilterFirst(String name, AsyncFilterHandler filterHandler) Add an filter to the head of the processing list.final H2ServerBootstrapH2ServerBootstrap.addFilterLast(String name, AsyncFilterHandler filterHandler) Add an filter to the tail of the processing list.final H2ServerBootstrapH2ServerBootstrap.replaceFilter(String existing, AsyncFilterHandler filterHandler) Replace an existing filter with the given name with new filter.