Uses of Interface
org.asynchttpclient.Response
-
Packages that use Response Package Description org.asynchttpclient org.asynchttpclient.handler org.asynchttpclient.handler.resumable org.asynchttpclient.netty org.asynchttpclient.webdav -
-
Uses of Response in org.asynchttpclient
Methods in org.asynchttpclient that return Response Modifier and Type Method Description Response
Response.ResponseBuilder. build()
Build aResponse
instanceResponse
AsyncCompletionHandlerBase. onCompleted(Response response)
Methods in org.asynchttpclient that return types with arguments of type Response Modifier and Type Method Description ListenableFuture<Response>
BoundRequestBuilder. execute()
ListenableFuture<Response>
AsyncHttpClient. executeRequest(Request request)
Execute an HTTP request.ListenableFuture<Response>
AsyncHttpClient. executeRequest(RequestBuilder requestBuilder)
Execute an HTTP request.ListenableFuture<Response>
DefaultAsyncHttpClient. executeRequest(Request request)
ListenableFuture<Response>
DefaultAsyncHttpClient. executeRequest(RequestBuilder requestBuilder)
Methods in org.asynchttpclient with parameters of type Response Modifier and Type Method Description abstract T
AsyncCompletionHandler. onCompleted(Response response)
Invoked once the HTTP response processing is finished.Response
AsyncCompletionHandlerBase. onCompleted(Response response)
-
Uses of Response in org.asynchttpclient.handler
Methods in org.asynchttpclient.handler that return Response Modifier and Type Method Description Response
BodyDeferringAsyncHandler.BodyDeferringInputStream. getAsapResponse()
Delegates toBodyDeferringAsyncHandler.getResponse()
.Response
BodyDeferringAsyncHandler.BodyDeferringInputStream. getLastResponse()
Delegates toFuture$lt;Response>#get()
method.Response
BodyDeferringAsyncHandler. getResponse()
This method -- unlike Future<Reponse>.get() -- will block only as long, as headers arrive.Response
BodyDeferringAsyncHandler. onCompleted()
Response
TransferCompletionHandler. onCompleted(Response response)
Methods in org.asynchttpclient.handler with parameters of type Response Modifier and Type Method Description Response
TransferCompletionHandler. onCompleted(Response response)
Constructor parameters in org.asynchttpclient.handler with type arguments of type Response Constructor Description BodyDeferringInputStream(Future<Response> future, BodyDeferringAsyncHandler bdah, InputStream in)
-
Uses of Response in org.asynchttpclient.handler.resumable
Methods in org.asynchttpclient.handler.resumable that return Response Modifier and Type Method Description Response
ResumableAsyncHandler. onCompleted()
Constructor parameters in org.asynchttpclient.handler.resumable with type arguments of type Response Constructor Description ResumableAsyncHandler(long byteTransferred, AsyncHandler<Response> decoratedAsyncHandler)
ResumableAsyncHandler(AsyncHandler<Response> decoratedAsyncHandler)
-
Uses of Response in org.asynchttpclient.netty
Classes in org.asynchttpclient.netty that implement Response Modifier and Type Class Description class
NettyResponse
Wrapper around theResponse
API. -
Uses of Response in org.asynchttpclient.webdav
Classes in org.asynchttpclient.webdav that implement Response Modifier and Type Class Description class
WebDavResponse
CustomizedResponse
which add support for getting the response's body as an XML document (@link WebDavResponse#getBodyAsXML}
-