Uses of Interface
org.apache.http.client.HttpRequestRetryHandler
-
Packages that use HttpRequestRetryHandler Package Description org.apache.http.impl.client Default HTTP client implementation.org.apache.http.impl.execchain HTTP request execution chain APIs. -
-
Uses of HttpRequestRetryHandler in org.apache.http.impl.client
Classes in org.apache.http.impl.client that implement HttpRequestRetryHandler Modifier and Type Class Description class
DefaultHttpRequestRetryHandler
The defaultHttpRequestRetryHandler
used by request executors.class
StandardHttpRequestRetryHandler
HttpRequestRetryHandler
which assumes that all requested HTTP methods which should be idempotent according to RFC-2616 are in fact idempotent and can be retried.Fields in org.apache.http.impl.client declared as HttpRequestRetryHandler Modifier and Type Field Description private HttpRequestRetryHandler
AbstractHttpClient. retryHandler
Deprecated.protected HttpRequestRetryHandler
DefaultRequestDirector. retryHandler
Deprecated.The request retry handler.private HttpRequestRetryHandler
HttpClientBuilder. retryHandler
Methods in org.apache.http.impl.client that return HttpRequestRetryHandler Modifier and Type Method Description protected HttpRequestRetryHandler
AbstractHttpClient. createHttpRequestRetryHandler()
Deprecated.HttpRequestRetryHandler
AbstractHttpClient. getHttpRequestRetryHandler()
Deprecated.Methods in org.apache.http.impl.client with parameters of type HttpRequestRetryHandler Modifier and Type Method Description protected RequestDirector
AbstractHttpClient. createClientRequestDirector(org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectHandler redirectHandler, AuthenticationHandler targetAuthHandler, AuthenticationHandler proxyAuthHandler, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated.(4.1) do not useprotected RequestDirector
AbstractHttpClient. createClientRequestDirector(org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectStrategy redirectStrategy, AuthenticationHandler targetAuthHandler, AuthenticationHandler proxyAuthHandler, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated.(4.2) do not useprotected RequestDirector
AbstractHttpClient. createClientRequestDirector(org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectStrategy redirectStrategy, AuthenticationStrategy targetAuthStrategy, AuthenticationStrategy proxyAuthStrategy, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated.void
AbstractHttpClient. setHttpRequestRetryHandler(HttpRequestRetryHandler handler)
Deprecated.HttpClientBuilder
HttpClientBuilder. setRetryHandler(HttpRequestRetryHandler retryHandler)
AssignsHttpRequestRetryHandler
instance.Constructors in org.apache.http.impl.client with parameters of type HttpRequestRetryHandler Constructor Description DefaultRequestDirector(org.apache.commons.logging.Log log, org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectStrategy redirectStrategy, AuthenticationHandler targetAuthHandler, AuthenticationHandler proxyAuthHandler, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated.DefaultRequestDirector(org.apache.commons.logging.Log log, org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectStrategy redirectStrategy, AuthenticationStrategy targetAuthStrategy, AuthenticationStrategy proxyAuthStrategy, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated.DefaultRequestDirector(org.apache.http.protocol.HttpRequestExecutor requestExec, ClientConnectionManager conman, org.apache.http.ConnectionReuseStrategy reustrat, ConnectionKeepAliveStrategy kastrat, HttpRoutePlanner rouplan, org.apache.http.protocol.HttpProcessor httpProcessor, HttpRequestRetryHandler retryHandler, RedirectHandler redirectHandler, AuthenticationHandler targetAuthHandler, AuthenticationHandler proxyAuthHandler, UserTokenHandler userTokenHandler, org.apache.http.params.HttpParams params)
Deprecated. -
Uses of HttpRequestRetryHandler in org.apache.http.impl.execchain
Fields in org.apache.http.impl.execchain declared as HttpRequestRetryHandler Modifier and Type Field Description private HttpRequestRetryHandler
RetryExec. retryHandler
Constructors in org.apache.http.impl.execchain with parameters of type HttpRequestRetryHandler Constructor Description RetryExec(ClientExecChain requestExecutor, HttpRequestRetryHandler retryHandler)
-