Interface | Description |
---|---|
Authenticator |
An interface for interacting with auth tokens.
|
HttpStack |
An HTTP stack abstraction.
|
HurlStack.UrlRewriter |
An interface for transforming URLs before use.
|
ImageLoader.ImageCache |
Simple cache adapter interface.
|
ImageLoader.ImageListener |
Interface for the response handlers on image requests.
|
Class | Description |
---|---|
AndroidAuthenticator |
An Authenticator that uses
AccountManager to get auth
tokens of a specified type for a specified account. |
AndroidAuthenticatorTest | |
BasicNetwork |
A network performing Volley requests over an
HttpStack . |
BasicNetworkTest | |
ByteArrayPool |
ByteArrayPool is a source and repository of
byte[] objects. |
ByteArrayPoolTest | |
CacheTest | |
ClearCacheRequest |
A synthetic request used for clearing the cache.
|
DiskBasedCache |
Cache implementation that caches files directly onto the hard disk in the specified
directory.
|
DiskBasedCacheTest | |
HttpClientStack |
An HttpStack that performs request over an
HttpClient . |
HttpClientStack.HttpPatch |
The HttpPatch class does not exist in the Android framework, so this has been defined here.
|
HttpClientStackTest | |
HttpHeaderParser |
Utility methods for parsing HTTP headers.
|
HttpHeaderParserTest | |
HurlStack |
An
HttpStack based on HttpURLConnection . |
HurlStackTest | |
ImageLoader |
Helper that handles loading and caching images from remote URLs.
|
ImageLoaderTest | |
ImageRequest |
A canned request for getting an image at a given URL and calling
back with a decoded Bitmap.
|
ImageRequestTest | |
JsonArrayRequest |
A request for retrieving a
JSONArray response body at a given URL. |
JsonObjectRequest |
A request for retrieving a
JSONObject response body at a given URL, allowing for an
optional JSONObject to be passed in as part of the request body. |
JsonRequest<T> |
A request for retrieving a T type response body at a given URL that also
optionally sends along a JSON body in the request specified.
|
JsonRequestCharsetTest | |
JsonRequestTest | |
NetworkImageView |
Handles fetching an image from a URL as well as the life-cycle of the
associated request.
|
NetworkImageViewTest | |
NoCache |
A cache that doesn't.
|
PoolingByteArrayOutputStream |
A variation of
ByteArrayOutputStream that uses a pool of byte[] buffers instead
of always allocating them fresh, saving on heap churn. |
PoolingByteArrayOutputStreamTest | |
RequestFuture<T> |
A Future that represents a Volley request.
|
RequestFutureTest | |
RequestQueueTest | |
RequestTest | |
ResponseTest | |
StringRequest |
A canned request for retrieving the response body at a given URL as a String.
|
StringRequestTest | |
Volley |