Package org.jclouds.http.handlers
Class RedirectionRetryHandler
- java.lang.Object
-
- org.jclouds.http.handlers.RedirectionRetryHandler
-
- All Implemented Interfaces:
HttpRetryHandler
- Direct Known Subclasses:
GetJobRedirectionRetryHandler
,GoogleCloudStorageRedirectRetryHandler
,S3RedirectionRetryHandler
@Singleton public class RedirectionRetryHandler extends Object implements HttpRetryHandler
Handles Retryable responses with error codes in the 3xx range, backing off when redirecting to itself.
-
-
Field Summary
Fields Modifier and Type Field Description protected BackoffLimitedRetryHandler
backoffHandler
protected Logger
logger
protected int
retryCountLimit
-
Fields inherited from interface org.jclouds.http.HttpRetryHandler
ALWAYS_RETRY, NEVER_RETRY
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
RedirectionRetryHandler(BackoffLimitedRetryHandler backoffHandler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
shouldRetryRequest(HttpCommand command, HttpResponse response)
Return true if the command should be retried.
-
-
-
Field Detail
-
retryCountLimit
@Inject(optional=true) @Named("jclouds.max-redirects") protected int retryCountLimit
-
logger
protected Logger logger
-
backoffHandler
protected final BackoffLimitedRetryHandler backoffHandler
-
-
Constructor Detail
-
RedirectionRetryHandler
@Inject protected RedirectionRetryHandler(BackoffLimitedRetryHandler backoffHandler)
-
-
Method Detail
-
shouldRetryRequest
public boolean shouldRetryRequest(HttpCommand command, HttpResponse response)
Description copied from interface:HttpRetryHandler
Return true if the command should be retried. This method should only be invoked when the response has failed with a HTTP 5xx error indicating a server-side error.- Specified by:
shouldRetryRequest
in interfaceHttpRetryHandler
-
-