| Interface | Description |
|---|---|
| AdvancedConfig.AdditionalPipelineInitializer | |
| AdvancedConfig.NettyWebSocketFactory | |
| AdvancedConfig.ResponseBodyPartFactory | |
| AsyncHandler<T> |
An asynchronous handler or callback which gets invoked as soon as some data is available when
processing an asynchronous response.
Callback methods get invoked in the following order: AsyncHandler.onStatusReceived(HttpResponseStatus),
AsyncHandler.onHeadersReceived(HttpResponseHeaders),
AsyncHandler.onBodyPartReceived(HttpResponseBodyPart), which could be invoked multiple times,
AsyncHandler.onCompleted(), once the response has been fully read.
Returning a AsyncHandler.State.ABORT from any of those callback methods will interrupt asynchronous response
processing, after that only AsyncHandler.onCompleted() is going to be called. |
| AsyncHttpClient |
This class support asynchronous and synchronous HTTP request.
|
| ListenableFuture<V> |
Extended
Future |
| Request |
The Request class can be used to construct HTTP request:
|
| Response |
Represents the asynchronous HTTP response callback for an
AsyncCompletionHandler |
| SignatureCalculator |
Interface that allows injecting signature calculator into
RequestBuilder so that signature calculation and inclusion can
be added as a pluggable component. |
| Class | Description |
|---|---|
| AdvancedConfig | |
| AdvancedConfig.EagerResponseBodyPartFactory | |
| AdvancedConfig.LazyResponseBodyPartFactory | |
| AsyncCompletionHandler<T> |
An
AsyncHandler augmented with an AsyncCompletionHandler.onCompleted(Response) convenience method which gets called
when the Response processing is finished. |
| AsyncCompletionHandlerBase |
Simple
AsyncHandler of type Response |
| AsyncHttpClientConfig |
Configuration class to use with a
AsyncHttpClient. |
| AsyncHttpClientConfig.Builder |
Builder for an
AsyncHttpClient |
| BoundRequestBuilder | |
| DefaultAsyncHttpClient | |
| FluentCaseInsensitiveStringsMap |
An implementation of a
String -> List<String> map that adds a fluent interface, i.e. |
| FluentStringsMap |
An implementation of a
String -> List<String> map that adds a fluent interface, i.e. |
| HttpResponseBodyPart |
A callback class used when an HTTP response body is received.
|
| HttpResponseHeaders |
A class that represent the HTTP headers.
|
| HttpResponseStatus |
A class that represent the HTTP response' status line (code + text)
|
| ListenableFuture.CompletedFailure<T> | |
| Param |
A pair of (name, value) String
|
| Realm |
This class is required when authentication is needed.
|
| Realm.RealmBuilder |
A builder for
Realm |
| RequestBuilder |
Builder for a
Request. |
| RequestBuilderBase<T extends RequestBuilderBase<T>> |
Builder for
Request |
| Response.ResponseBuilder | |
| ResponseBase |
| Enum | Description |
|---|---|
| AsyncHandler.State | |
| Realm.AuthScheme |
Copyright © 2015. All Rights Reserved.