|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ResponseHandler | |
---|---|
org.apache.http.client | The API for client-side HTTP communication. |
org.apache.http.impl.client | Default implementations for interfaces in
org.apache.http.client . |
org.apache.http.impl.client.cache |
Uses of ResponseHandler in org.apache.http.client |
---|
Methods in org.apache.http.client with parameters of type ResponseHandler | ||
---|---|---|
|
HttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler)
Executes a request to the target using the default context and processes the response using the given response handler. |
|
|
HttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
Executes a request to the target using the given context and processes the response using the given response handler. |
|
|
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
Executes a request using the default context and processes the response using the given response handler. |
|
|
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
Executes a request 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 ResponseHandler | |
---|---|
class |
BasicResponseHandler
A ResponseHandler that returns the response body as a String
for successful (2xx) responses. |
Methods in org.apache.http.impl.client with parameters of type ResponseHandler | ||
---|---|---|
|
AbstractHttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler)
|
|
|
AbstractHttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
|
|
|
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
|
|
|
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
|
Uses of ResponseHandler in org.apache.http.impl.client.cache |
---|
Methods in org.apache.http.impl.client.cache with parameters of type ResponseHandler | ||
---|---|---|
|
CachingHttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler)
Execute an HttpRequest @ a given HttpHost with a specified
ResponseHandler that will deal with the result of the call. |
|
|
CachingHttpClient.execute(org.apache.http.HttpHost target,
org.apache.http.HttpRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
Execute an HttpRequest @ a given HttpHost with a specified
ResponseHandler that will deal with the result of the call using
a specific HttpContext |
|
|
CachingHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
|
|
|
CachingHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |