Interface | Description |
---|---|
JsonValueInterface |
This interface is used to encapsulate JSON values that are handled entirely
by the app.
|
LogInterface |
Interface independent to any library, which currently uses same interface as
Log implementation
You can change currently used LogInterface through AsyncHttpClient.setLogInterface(LogInterface) |
ResponseHandlerInterface |
Interface to standardize implementations
|
Class | Description |
---|---|
AsyncHttpClient |
The AsyncHttpClient can be used to make asynchronous GET, POST, PUT and DELETE HTTP requests in
your Android applications.
|
AsyncHttpRequest |
Internal class, representing the HttpRequest, done in asynchronous manner
|
AsyncHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient . |
Base64 |
Utilities for encoding and decoding the Base64 representation of binary data.
|
Base64OutputStream | |
BaseJsonHttpResponseHandler<JSON_TYPE> |
Class meant to be used with custom JSON parser (such as GSON or Jackson JSON)
|
BinaryHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient . |
BlackholeHttpResponseHandler |
Blank implementation of ResponseHandlerInterface, which ignores all contents returned by
remote HTTP endpoint, and discards all various log messages
|
DataAsyncHttpResponseHandler | |
FileAsyncHttpResponseHandler | |
HttpDelete |
The current Android (API level 21) bundled version of the Apache Http Client does not implement
a HttpEntityEnclosingRequestBase type of HTTP DELETE method.
|
HttpGet |
The current Android (API level 21) bundled version of the Apache Http Client does not implement
a HttpEntityEnclosingRequestBase type of HTTP GET method.
|
JsonHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient , with
automatic parsing into a JSONObject or JSONArray . |
JsonStreamerEntity |
HTTP entity to upload JSON data using streams.
|
LogHandler | |
MySSLSocketFactory |
This file is introduced to fix HTTPS Post bug on API < ICS see
https://code.google.com/p/android/issues/detail?id=13117#c14
|
PersistentCookieStore |
A persistent cookie store which implements the Apache HttpClient
CookieStore interface. |
PreemptiveAuthorizationHttpRequestInterceptor | |
RangeFileAsyncHttpResponseHandler | |
RequestHandle |
A Handle to an AsyncRequest which can be used to cancel a running request.
|
RequestParams |
A collection of string request parameters or files to send along with requests made from an
AsyncHttpClient instance. |
RequestParams.FileWrapper | |
RequestParams.StreamWrapper | |
SaxAsyncHttpResponseHandler<T extends org.xml.sax.helpers.DefaultHandler> |
Provides interface to deserialize SAX responses, using AsyncHttpResponseHandler.
|
SerializableCookie | |
SyncHttpClient |
Processes http requests in synchronous mode, so your caller thread will be blocked on each
request
|
TextHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient . |
Exception | Description |
---|---|
Base64DataException |