Interface | Description |
---|---|
AsyncHandler<T> |
An asynchronous handler or callback which gets invoked as soon as some data is available when
processing an asynchronous response.
|
AsyncHttpClient |
This class support asynchronous and synchronous HTTP request.
|
AsyncHttpClientConfig | |
AsyncHttpClientConfig.AdditionalChannelInitializer | |
ListenableFuture<V> |
Extended
Future |
Request |
The Request class can be used to construct HTTP request:
Request r = new RequestBuilder()
.setUrl("url")
.setRealm(
new Realm.Builder("principal", "password")
.setRealmName("MyRealm")
.setScheme(Realm.AuthScheme.BASIC)
).build();
|
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. |
SslEngineFactory |
Class | Description |
---|---|
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 |
AsyncHttpClientState | |
BoundRequestBuilder | |
ClientStats |
A record class representing the state of an (@link org.asynchttpclient.AsyncHttpClient).
|
DefaultAsyncHttpClient |
Default and threadsafe implementation of
AsyncHttpClient . |
DefaultAsyncHttpClientConfig |
Configuration class to use with a
AsyncHttpClient . |
DefaultAsyncHttpClientConfig.Builder |
Builder for an
AsyncHttpClient |
DefaultRequest | |
Dsl | |
HostStats |
A record class representing the status of connections to some host.
|
HttpResponseBodyPart |
A callback class used when an HTTP response body is received.
|
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.Builder |
A builder for
Realm |
RequestBuilder |
Builder for a
Request . |
RequestBuilderBase<T extends RequestBuilderBase<T>> |
Builder for
Request |
Response.ResponseBuilder |
Enum | Description |
---|---|
AsyncHandler.State | |
AsyncHttpClientConfig.ResponseBodyPartFactory | |
Realm.AuthScheme |
Copyright © 2017. All Rights Reserved.