{@link Response} represents a HTTP response and offers methods to retrieve status code, HTTP versionand headers.
{@link Response} objects are passed as parameters to {@link Response.Listener} callbacks, or asfuture result of {@link Request#send()}.
{@link Response} objects do not contain getters for the response content, because it may be too largeto fit into memory. The response content should be retrieved via {@link Response.Listener#onContent(Response,ByteBuffer) contentevents}, or via utility classes such as {@link BufferingResponseListener}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|