Package org.apache.commons.httpclient
Interface MethodRetryHandler
- All Known Implementing Classes:
DefaultMethodRetryHandler
public interface MethodRetryHandler
Deprecated.
A handler for determining if an HttpMethod should be retried after a
recoverable exception during execution.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanretryMethod(HttpMethod method, HttpConnection connection, HttpRecoverableException recoverableException, int executionCount, boolean requestSent) Deprecated.Determines if a method should be retried after an HttpRecoverableException occurs during execution.
-
Method Details
-
retryMethod
boolean retryMethod(HttpMethod method, HttpConnection connection, HttpRecoverableException recoverableException, int executionCount, boolean requestSent) Deprecated.Determines if a method should be retried after an HttpRecoverableException occurs during execution.- Parameters:
method- the method being executedconnection- the connection the method is usingrecoverableException- the exception that occurredexecutionCount- the number of times this method has been unsuccessfully executedrequestSent- this argument is unused and will be removed in the future.HttpMethod.isRequestSent()should be used instead- Returns:
trueif the method should be retried,falseotherwise
-
HttpMethodRetryHandler