Uses of Class
org.apache.hc.client5.http.impl.classic.CloseableHttpClient
-
Packages that use CloseableHttpClient Package Description org.apache.hc.client5.http.fluent Simple facade APIs for HttpClient based on the concept of a fluent interface.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.org.apache.hc.client5.http.impl.classic Classic HTTP client API implementation that supports HTTP/1.1 transport only.org.apache.hc.client5.http.impl.compat -
-
Uses of CloseableHttpClient in org.apache.hc.client5.http.fluent
Fields in org.apache.hc.client5.http.fluent declared as CloseableHttpClient Modifier and Type Field Description private static CloseableHttpClientExecutor. ASYNC_CLIENTprivate static CloseableHttpClientExecutor. CLIENTprivate CloseableHttpClientExecutor. httpclientMethods in org.apache.hc.client5.http.fluent that return CloseableHttpClient Modifier and Type Method Description (package private) static CloseableHttpClientExecutor. GET_ASYNC_CLIENT()(package private) static CloseableHttpClientExecutor. GET_CLASSIC_CLIENT()Methods in org.apache.hc.client5.http.fluent with parameters of type CloseableHttpClient Modifier and Type Method Description ResponseRequest. execute(CloseableHttpClient client)(package private) org.apache.hc.core5.http.ClassicHttpResponseRequest. internalExecute(CloseableHttpClient client, HttpClientContext localContext)static ExecutorExecutor. newInstance(CloseableHttpClient httpclient)Constructors in org.apache.hc.client5.http.fluent with parameters of type CloseableHttpClient Constructor Description Executor(CloseableHttpClient httpclient) -
Uses of CloseableHttpClient in org.apache.hc.client5.http.impl.async
Methods in org.apache.hc.client5.http.impl.async that return CloseableHttpClient Modifier and Type Method Description static CloseableHttpClientHttpAsyncClients. classic(CloseableHttpAsyncClient client, org.apache.hc.core5.util.Timeout operationTimeout)Creates anCloseableHttpClientfacade backed byCloseableHttpAsyncClientbuilt internally and acting as a compatibility bridge between the classic APIs based on the standardInputStream/OutputStreammodel and the underlying asynchronous message transport. -
Uses of CloseableHttpClient in org.apache.hc.client5.http.impl.cache
Methods in org.apache.hc.client5.http.impl.cache that return CloseableHttpClient Modifier and Type Method Description static CloseableHttpClientCachingHttpClients. createFileBound(java.io.File cacheDir)CreatesCloseableHttpClientinstance that uses a file system bound response cache.static CloseableHttpClientCachingHttpClients. createMemoryBound()CreatesCloseableHttpClientinstance that uses a memory bound response cache. -
Uses of CloseableHttpClient in org.apache.hc.client5.http.impl.classic
Subclasses of CloseableHttpClient in org.apache.hc.client5.http.impl.classic Modifier and Type Class Description (package private) classInternalHttpClientInternal implementation ofCloseableHttpClient.classMinimalHttpClientMinimal implementation ofCloseableHttpClient.Methods in org.apache.hc.client5.http.impl.classic that return CloseableHttpClient Modifier and Type Method Description CloseableHttpClientHttpClientBuilder. build()static CloseableHttpClientHttpClients. createDefault()CreatesCloseableHttpClientinstance with default configuration.static CloseableHttpClientHttpClients. createSystem()CreatesCloseableHttpClientinstance with default configuration based on system properties. -
Uses of CloseableHttpClient in org.apache.hc.client5.http.impl.compat
Subclasses of CloseableHttpClient in org.apache.hc.client5.http.impl.compat Modifier and Type Class Description classClassicToAsyncAdaptorCloseableHttpClientimplementation backed byCloseableHttpAsyncClientacting as a compatibility bridge with the classic APIs based on the standardInputStream/OutputStreammodel.
-