V2CompatibleBackoffStrategyPredefinedBackoffStrategies.EqualJitterBackoffStrategy, PredefinedBackoffStrategies.ExponentialBackoffStrategy, PredefinedBackoffStrategies.FullJitterBackoffStrategypublic static interface RetryPolicy.BackoffStrategy
| Modifier and Type | Field | Description |
|---|---|---|
static RetryPolicy.BackoffStrategy |
NO_DELAY |
| Modifier and Type | Method | Description |
|---|---|---|
long |
delayBeforeNextRetry(AmazonWebServiceRequest originalRequest,
AmazonClientException exception,
int retriesAttempted) |
Returns the delay (in milliseconds) before next retry attempt.
|
static final RetryPolicy.BackoffStrategy NO_DELAY
long delayBeforeNextRetry(AmazonWebServiceRequest originalRequest, AmazonClientException exception, int retriesAttempted)
originalRequest - The original request object being executed. For
performance reason, this object is not a defensive copy,
and caller should not attempt to modify its data.exception - The exception from the failed request, represented as an
AmazonClientException object. There are two types of
exception that will be passed to this method:
retriesAttempted - The number of times the current request has been attempted
(not including the next attempt after the delay).Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.