Uses of Interface
org.apache.http.client.ResponseHandler
Packages that use ResponseHandler
Package
Description
Client HTTP communication APIs.
Default HTTP client implementation.
-
Uses of ResponseHandler in org.apache.http.client
Methods in org.apache.http.client with parameters of type ResponseHandlerModifier and TypeMethodDescription<T> THttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler) Executes HTTP request using the default context and processes the response using the given response handler.<T> THttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Executes HTTP request using the given context and processes the response using the given response handler.<T> THttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler) Executes HTTP request to the target using the default context and processes the response using the given response handler.<T> THttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Executes HTTP request to the target using the given context and processes the response using the given response handler. -
Uses of ResponseHandler in org.apache.http.impl.client
Classes in org.apache.http.impl.client that implement ResponseHandlerModifier and TypeClassDescriptionclassA genericResponseHandlerthat works with the response entity for successful (2xx) responses.classAResponseHandlerthat returns the response body as a String for successful (2xx) responses.Fields in org.apache.http.impl.client declared as ResponseHandlerModifier and TypeFieldDescriptionprivate final ResponseHandler<V> HttpRequestTaskCallable.responseHandlerMethods in org.apache.http.impl.client with parameters of type ResponseHandlerModifier and TypeMethodDescription<T> TAutoRetryHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler) Deprecated.<T> TAutoRetryHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Deprecated.<T> TAutoRetryHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler) Deprecated.<T> TAutoRetryHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Deprecated.<T> TCloseableHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler) Executes a request using the default context and processes the response using the given response handler.<T> TCloseableHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Executes a request using the default context and processes the response using the given response handler.<T> TCloseableHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler) Executes a request using the default context and processes the response using the given response handler.<T> TCloseableHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Executes a request using the default context and processes the response using the given response handler.<T> TDecompressingHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler) Deprecated.<T> TDecompressingHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Deprecated.<T> TDecompressingHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler) Deprecated.<T> TDecompressingHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context) Deprecated.<T> HttpRequestFutureTask<T> FutureRequestExecutionService.execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<T> responseHandler) Schedule a request for execution.<T> HttpRequestFutureTask<T> FutureRequestExecutionService.execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<T> responseHandler, org.apache.http.concurrent.FutureCallback<T> callback) Schedule a request for execution.Constructors in org.apache.http.impl.client with parameters of type ResponseHandlerModifierConstructorDescription(package private)HttpRequestTaskCallable(HttpClient httpClient, HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<V> responseHandler, org.apache.http.concurrent.FutureCallback<V> callback, FutureRequestExecutionMetrics metrics)