Uses of Interface
org.apache.http.client.cache.Resource
Packages that use Resource
Package
Description
This package consists largely of constants and interfaces that are
necessary for building new storage backends for the
CachingHttpClient
or for
those clients wanting to get a little more behavioral information
out of the cache module (for example, whether a particular response
was a cache hit or not).
This package contains a cache module that can be used for HTTP/1.1
client-side caching.
-
Uses of Resource in org.apache.http.client.cache
Methods in org.apache.http.client.cache that return ResourceModifier and TypeMethodDescriptionClones an existingResource
.ResourceFactory.generate
(String requestId, InputStream inStream, InputLimit limit) Creates aResource
from a given response body.HttpCacheEntry.getResource()
Returns theResource
containing the origin response body.Methods in org.apache.http.client.cache with parameters of type ResourceConstructors in org.apache.http.client.cache with parameters of type ResourceModifierConstructorDescriptionHttpCacheEntry
(Date requestDate, Date responseDate, org.apache.http.StatusLine statusLine, org.apache.http.Header[] responseHeaders, Resource resource) Create a newHttpCacheEntry
.HttpCacheEntry
(Date requestDate, Date responseDate, org.apache.http.StatusLine statusLine, org.apache.http.Header[] responseHeaders, Resource resource, String requestMethod) Create a newHttpCacheEntry
.HttpCacheEntry
(Date requestDate, Date responseDate, org.apache.http.StatusLine statusLine, org.apache.http.Header[] responseHeaders, Resource resource, Map<String, String> variantMap) Create a newHttpCacheEntry
with variants.HttpCacheEntry
(Date requestDate, Date responseDate, org.apache.http.StatusLine statusLine, org.apache.http.Header[] responseHeaders, Resource resource, Map<String, String> variantMap, String requestMethod) Create a newHttpCacheEntry
with variants. -
Uses of Resource in org.apache.http.impl.client.cache
Classes in org.apache.http.impl.client.cache that implement ResourceModifier and TypeClassDescriptionclass
Cache resource backed by a file.class
Cache resource backed by a byte array on the heap.Methods in org.apache.http.impl.client.cache that return ResourceModifier and TypeMethodDescriptionFileResourceFactory.generate
(String requestId, InputStream inStream, InputLimit limit) HeapResourceFactory.generate
(String requestId, InputStream inStream, InputLimit limit) Methods in org.apache.http.impl.client.cache with parameters of type Resource