Uses of Interface
org.asynchttpclient.Response
-
Packages that use Response Package Description org.asynchttpclient org.asynchttpclient.handler org.asynchttpclient.handler.resumable org.asynchttpclient.netty -
-
Uses of Response in org.asynchttpclient
Methods in org.asynchttpclient that return Response Modifier and Type Method Description @Nullable Response
Response.ResponseBuilder. build()
Build aResponse
instance@Nullable Response
AsyncCompletionHandlerBase. onCompleted(@Nullable 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(@Nullable Response response)
Invoked once the HTTP response processing is finished.@Nullable Response
AsyncCompletionHandlerBase. onCompleted(@Nullable Response response)
-
Uses of Response in org.asynchttpclient.handler
Methods in org.asynchttpclient.handler that return Response Modifier and Type Method Description @Nullable Response
BodyDeferringAsyncHandler.BodyDeferringInputStream. getAsapResponse()
Delegates toBodyDeferringAsyncHandler.getResponse()
.Response
BodyDeferringAsyncHandler.BodyDeferringInputStream. getLastResponse()
Delegates toFuture$lt;Response>#get()
method.@Nullable Response
BodyDeferringAsyncHandler. getResponse()
This method -- unlike Future<Reponse>.get() -- will block only as long, as headers arrive.@Nullable Response
BodyDeferringAsyncHandler. onCompleted()
@Nullable Response
TransferCompletionHandler. onCompleted(@Nullable Response response)
Methods in org.asynchttpclient.handler with parameters of type Response Modifier and Type Method Description @Nullable Response
TransferCompletionHandler. onCompleted(@Nullable 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 @Nullable 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.
-