Uses of Class
org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient
-
Packages that use CloseableHttpAsyncClient Package Description org.apache.hc.client5.http.impl.async Asynchronous HTTP client API implementation that supports both HTTP/2 and HTTP/1.1 transport.org.apache.hc.client5.http.impl.cache Caching API implementation for both the classic and the asynchronous HTTP transports. -
-
Uses of CloseableHttpAsyncClient in org.apache.hc.client5.http.impl.async
Subclasses of CloseableHttpAsyncClient in org.apache.hc.client5.http.impl.async Modifier and Type Class Description (package private) class
AbstractHttpAsyncClientBase
(package private) class
AbstractMinimalHttpAsyncClientBase
(package private) class
InternalAbstractHttpAsyncClient
class
InternalH2AsyncClient
Internal implementation of HTTP/2 onlyCloseableHttpAsyncClient
.class
InternalHttpAsyncClient
Internal implementation ofCloseableHttpAsyncClient
that can negotiate the most optimal HTTP protocol version during during theTLS
handshake withALPN
extension if supported by the Java runtime.class
MinimalH2AsyncClient
Minimal implementation of HTTP/2 onlyCloseableHttpAsyncClient
.class
MinimalHttpAsyncClient
Minimal implementation ofCloseableHttpAsyncClient
.Methods in org.apache.hc.client5.http.impl.async that return CloseableHttpAsyncClient Modifier and Type Method Description CloseableHttpAsyncClient
H2AsyncClientBuilder. build()
CloseableHttpAsyncClient
HttpAsyncClientBuilder. build()
static CloseableHttpAsyncClient
HttpAsyncClients. createDefault()
CreatesCloseableHttpAsyncClient
instance with default configuration.static CloseableHttpAsyncClient
HttpAsyncClients. createHttp2Default()
Creates HTTP/2CloseableHttpAsyncClient
instance with default configuration optimized for HTTP/2 protocol and message multiplexing.static CloseableHttpAsyncClient
HttpAsyncClients. createHttp2System()
Creates HTTP/2CloseableHttpAsyncClient
instance with default configuration and system properties optimized for HTTP/2 protocol and message multiplexing.static CloseableHttpAsyncClient
HttpAsyncClients. createSystem()
CreatesCloseableHttpAsyncClient
instance with default configuration and system properties. -
Uses of CloseableHttpAsyncClient in org.apache.hc.client5.http.impl.cache
Methods in org.apache.hc.client5.http.impl.cache that return CloseableHttpAsyncClient Modifier and Type Method Description static CloseableHttpAsyncClient
CachingHttpAsyncClients. createFileBound(java.io.File cacheDir)
CreatesCloseableHttpAsyncClient
instance that uses a file system bound response cache.static CloseableHttpAsyncClient
CachingHttpAsyncClients. createHttp2FileBound(java.io.File cacheDir)
Creates HTTP/2CloseableHttpAsyncClient
instance that uses a file system bound response cache.static CloseableHttpAsyncClient
CachingHttpAsyncClients. createHttp2MemoryBound()
Creates HTTP/2CloseableHttpAsyncClient
instance that uses a memory bound response cache.static CloseableHttpAsyncClient
CachingHttpAsyncClients. createMemoryBound()
CreatesCloseableHttpAsyncClient
instance that uses a memory bound response cache.
-