Uses of Interface
org.apache.http.client.cache.HttpCacheStorage
-
Packages that use HttpCacheStorage Package Description 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 HttpCacheStorage in org.apache.http.impl.client.cache
Classes in org.apache.http.impl.client.cache that implement HttpCacheStorage Modifier and Type Class Description class
BasicHttpCacheStorage
BasicHttpCacheStorage
implementation backed by an instance ofLinkedHashMap
.class
ManagedHttpCacheStorage
HttpCacheStorage
implementation capable of deallocating resources associated with the cache entries.Fields in org.apache.http.impl.client.cache declared as HttpCacheStorage Modifier and Type Field Description private HttpCacheStorage
BasicHttpCache. storage
private HttpCacheStorage
CacheInvalidator. storage
private HttpCacheStorage
CachingHttpClientBuilder. storage
Methods in org.apache.http.impl.client.cache with parameters of type HttpCacheStorage Modifier and Type Method Description CachingHttpClientBuilder
CachingHttpClientBuilder. setHttpCacheStorage(HttpCacheStorage storage)
Constructors in org.apache.http.impl.client.cache with parameters of type HttpCacheStorage Constructor Description BasicHttpCache(ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
BasicHttpCache(ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config, CacheKeyGenerator uriExtractor)
BasicHttpCache(ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config, CacheKeyGenerator uriExtractor, HttpCacheInvalidator cacheInvalidator)
CacheInvalidator(CacheKeyGenerator uriExtractor, HttpCacheStorage storage)
CachingExec(ClientExecChain backend, ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
CachingHttpClient(HttpClient client, HttpCacheStorage storage, CacheConfig config)
Deprecated.Constructs aCachingHttpClient
with the given caching options that stores cache entries in the provided storage backend and uses the givenHttpClient
for backend requests.CachingHttpClient(HttpClient client, ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
Deprecated.Constructs aCachingHttpClient
with the given caching options that stores cache entries in the provided storage backend and uses the givenHttpClient
for backend requests.
-