All Classes and Interfaces

Class
Description
Allows network activity to be monitored in an HTTP client
 
Stores cookies from responses and decorates requests with them where appropriate.
A simple asynchronous HTTP client with an emphasis on ease of use and a simple callback-based API to discourage blocking calls - use HttpClient.builder() to configure and create an instance.
Builds an HTTP client.
Encapsulates a setting that can be set on the Netty Bootstrap; not really an API class, but exposed so that the HttpClient constructor can be invoked directly if someone wants to (using HttpClientBuilder is much easier).
Builds an HTTP request, allows for adding listeners for response events, and for launching such a request.
Exception passed to onError when a redirect loop is encountered, or the redirect URL cannot be parsed.
 
Object which can be attached to an HttpClient which intercept all requests and can modify them before they are sent
Returned from launching an HTTP request; attach handlers using the on(Class<EventType>, Receiver<State<T>>)) method.
Processes an HTTP response - can be passed to HttpRequestBuilder.execute().
Represents the current state of a request, used in notifications.
State event when a connection has been achieved; payload is the Channel; invoking close() on it will abort.
State event triggered when one chunk of content has arrived; if the server is using chunked transfer encoding, this state will be fired once for each chunk; when the FullContentReceived event is fired, there will be no more ContentReceived events.
State event triggered when an exception is thrown somewhere in processing of the request or response.
Convenience state event providing the entire response and its body as a FullHttpResponse.
State event triggered when the entire response body has arrived.
State event triggered when the response header has arrived, but not the response body.
State event triggered when a redirect is followed.
State event when the HTTP request is about to be sent; payload is the HTTP request (you can still modify headers, etc at this point).
State event triggered when a timeout occurs.
Enumeration of states a request can be in.