|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use HttpClient | |
|---|---|
| org.apache.http.client.fluent | |
| org.apache.http.client.utils | Helpers and utility classes for HttpClient. |
| org.apache.http.impl.client | Default implementations for interfaces in
org.apache.http.client. |
| org.apache.http.impl.client.cache | This package contains a cache module that can be used for HTTP/1.1 client-side caching. |
| Uses of HttpClient in org.apache.http.client.fluent |
|---|
| Methods in org.apache.http.client.fluent with parameters of type HttpClient | |
|---|---|
static Executor |
Executor.newInstance(HttpClient httpclient)
|
| Uses of HttpClient in org.apache.http.client.utils |
|---|
| Methods in org.apache.http.client.utils with parameters of type HttpClient | |
|---|---|
static void |
HttpClientUtils.closeQuietly(HttpClient httpClient)
Unconditionally close a httpClient. |
| Uses of HttpClient in org.apache.http.impl.client |
|---|
| Classes in org.apache.http.impl.client that implement HttpClient | |
|---|---|
class |
AbstractHttpClient
Base class for HttpClient implementations. |
class |
AutoRetryHttpClient
HttpClient implementation that can automatically retry the request in case of
a non-2xx response using the ServiceUnavailableRetryStrategy interface. |
class |
ContentEncodingHttpClient
Deprecated. |
class |
DecompressingHttpClient
Decorator adding support for compressed responses. |
class |
DefaultHttpClient
Default implementation of HttpClient pre-configured for most common use scenarios. |
class |
SystemDefaultHttpClient
An extension of DefaultHttpClient pre-configured using system properties. |
| Constructors in org.apache.http.impl.client with parameters of type HttpClient | |
|---|---|
AutoRetryHttpClient(HttpClient client)
Constructs a AutoRetryHttpClient with default caching settings that
stores cache entries in memory and uses the given HttpClient for
backend requests. |
|
AutoRetryHttpClient(HttpClient client,
ServiceUnavailableRetryStrategy retryStrategy)
|
|
DecompressingHttpClient(HttpClient backend)
Constructs a decorator to ask for and handle compressed entities on the fly. |
|
| Uses of HttpClient in org.apache.http.impl.client.cache |
|---|
| Classes in org.apache.http.impl.client.cache that implement HttpClient | |
|---|---|
class |
CachingHttpClient
The CachingHttpClient is meant to be a drop-in replacement for
a DefaultHttpClient that transparently adds client-side caching. |
| Constructors in org.apache.http.impl.client.cache with parameters of type HttpClient | |
|---|---|
CachingHttpClient(HttpClient client)
Constructs a CachingHttpClient with default caching settings that
stores cache entries in memory and uses the given HttpClient
for backend requests. |
|
CachingHttpClient(HttpClient client,
CacheConfig config)
Constructs a CachingHttpClient with the given caching options that
stores cache entries in memory and uses the given HttpClient
for backend requests. |
|
CachingHttpClient(HttpClient client,
HttpCacheStorage storage,
CacheConfig config)
Constructs a CachingHttpClient with the given caching options
that stores cache entries in the provided storage backend and uses
the given HttpClient for backend requests. |
|
CachingHttpClient(HttpClient client,
ResourceFactory resourceFactory,
HttpCacheStorage storage,
CacheConfig config)
Constructs a CachingHttpClient with the given caching options
that stores cache entries in the provided storage backend and uses
the given HttpClient for backend requests. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||