Uses of Interface
com.ning.http.client.AsyncHandler
Packages that use AsyncHandler
Package
Description
-
Uses of AsyncHandler in com.ning.http.client
Subinterfaces of AsyncHandler in com.ning.http.clientModifier and TypeInterfaceDescriptioninterfaceAn extendedAsyncHandlerwith two extra callback who get invoked during the content upload to a remote server.Classes in com.ning.http.client that implement AsyncHandlerModifier and TypeClassDescriptionclassAnAsyncHandleraugmented with anAsyncCompletionHandler.onCompleted(Response)convenience method which gets called when theResponseprocessing is finished.classSimpleAsyncHandlerof typeResponseclassAn AsyncHandler that returns Response (without body, so status code and headers only) as fast as possible for inspection, but leaves you the option to defer body consumption.Methods in com.ning.http.client with parameters of type AsyncHandlerModifier and TypeMethodDescription<T> ListenableFuture<T>AsyncHttpClient.BoundRequestBuilder.execute(AsyncHandler<T> handler) <T> ListenableFuture<T>AsyncHttpProvider.execute(Request request, AsyncHandler<T> handler) Execute the request and invoke theAsyncHandlerwhen the response arrive.<T> ListenableFuture<T>AsyncHttpClient.executeRequest(Request request, AsyncHandler<T> handler) Execute an HTTP request. -
Uses of AsyncHandler in com.ning.http.client.filter
Methods in com.ning.http.client.filter that return AsyncHandlerModifier and TypeMethodDescriptionFilterContext.FilterContextBuilder.getAsyncHandler()FilterContext.getAsyncHandler()Return the original or decoratedAsyncHandlerMethods in com.ning.http.client.filter with parameters of type AsyncHandlerModifier and TypeMethodDescriptionFilterContext.FilterContextBuilder.asyncHandler(AsyncHandler<T> asyncHandler) -
Uses of AsyncHandler in com.ning.http.client.listener
Classes in com.ning.http.client.listener that implement AsyncHandlerModifier and TypeClassDescriptionclassAorg.asynchttpclient.AsyncHandlerthat can be used to notify a set ofTransferListener -
Uses of AsyncHandler in com.ning.http.client.providers.grizzly
Methods in com.ning.http.client.providers.grizzly that return AsyncHandlerMethods in com.ning.http.client.providers.grizzly with parameters of type AsyncHandlerModifier and TypeMethodDescription<T> ListenableFuture<T>GrizzlyAsyncHttpProvider.execute(Request request, AsyncHandler<T> asyncHandler) -
Uses of AsyncHandler in com.ning.http.client.resumable
Classes in com.ning.http.client.resumable that implement AsyncHandlerModifier and TypeClassDescriptionclassAnAsyncHandlerwhich support resumable download, e.g when used with anResumableIOExceptionFilter, this handler can resume the download operation at the point it was before the interruption occured.Constructors in com.ning.http.client.resumable with parameters of type AsyncHandlerModifierConstructorDescriptionResumableAsyncHandler(long byteTransferred, AsyncHandler<T> decoratedAsyncHandler) ResumableAsyncHandler(AsyncHandler<T> decoratedAsyncHandler) -
Uses of AsyncHandler in com.ning.http.client.webdav
Classes in com.ning.http.client.webdav that implement AsyncHandlerModifier and TypeClassDescriptionclassSimpleAsyncHandlerthat add support for WebDav's response manipulation. -
Uses of AsyncHandler in com.ning.http.client.ws
Classes in com.ning.http.client.ws that implement AsyncHandlerModifier and TypeClassDescriptionclassAnAsyncHandlerwhich is able to execute WebSocket upgrade.