| java.lang.Object org.apache.commons.httpclient.DefaultHttpMethodRetryHandler
Constructor Summary | |
public | DefaultHttpMethodRetryHandler(int retryCount, boolean requestSentRetryEnabled) Creates a new DefaultHttpMethodRetryHandler. | public | DefaultHttpMethodRetryHandler() Creates a new DefaultHttpMethodRetryHandler that retries up to 3 times
but does not retry methods that have successfully sent their requests. |
DefaultHttpMethodRetryHandler | public DefaultHttpMethodRetryHandler(int retryCount, boolean requestSentRetryEnabled)(Code) | | Creates a new DefaultHttpMethodRetryHandler.
Parameters: retryCount - the number of times a method will be retried Parameters: requestSentRetryEnabled - if true, methods that have successfully sent their request will be retried |
DefaultHttpMethodRetryHandler | public DefaultHttpMethodRetryHandler()(Code) | | Creates a new DefaultHttpMethodRetryHandler that retries up to 3 times
but does not retry methods that have successfully sent their requests.
|
getRetryCount | public int getRetryCount()(Code) | | the maximum number of times a method will be retried |
isRequestSentRetryEnabled | public boolean isRequestSentRetryEnabled()(Code) | | true if this handler will retry methods that have successfully sent their request, false otherwise |
|
|