public interface HttpRequestRetryHandler
Implementations of this interface must be thread-safe. Access to shared data must be synchronized as methods of this interface may be executed from multiple threads.
Modifier and Type | Method and Description |
---|---|
boolean |
retryRequest(IOException exception,
int executionCount,
org.apache.http.protocol.HttpContext context)
Determines if a method should be retried after an IOException
occurs during execution.
|
boolean retryRequest(IOException exception, int executionCount, org.apache.http.protocol.HttpContext context)
exception
- the exception that occurredexecutionCount
- the number of times this method has been
unsuccessfully executedcontext
- the context for the request executiontrue
if the method should be retried, false
otherwiseCopyright © 1999–2022 The Apache Software Foundation. All rights reserved.