Uses of Interface
software.amazon.awssdk.retries.api.BackoffStrategy
-
Packages that use BackoffStrategy Package Description software.amazon.awssdk.retries.api software.amazon.awssdk.retries.api.internal.backoff -
-
Uses of BackoffStrategy in software.amazon.awssdk.retries.api
Methods in software.amazon.awssdk.retries.api that return BackoffStrategy Modifier and Type Method Description static BackoffStrategyBackoffStrategy. exponentialDelay(Duration baseDelay, Duration maxDelay)Wait for a random period of time between 0ms and an exponentially increasing amount of time between each subsequent attempt of the same call.static BackoffStrategyBackoffStrategy. exponentialDelayWithoutJitter(Duration baseDelay, Duration maxDelay)Wait for an exponentially increasing amount of time between each subsequent attempt of the same call.static BackoffStrategyBackoffStrategy. fixedDelay(Duration delay)Wait for a random period of time between 0ms and the provided delay.static BackoffStrategyBackoffStrategy. fixedDelayWithoutJitter(Duration delay)Wait for a period of time equal to the provided delay.static BackoffStrategyBackoffStrategy. retryImmediately()Do not back off: retry immediately.Methods in software.amazon.awssdk.retries.api with parameters of type BackoffStrategy Modifier and Type Method Description BRetryStrategy.Builder. backoffStrategy(BackoffStrategy backoffStrategy)Configure the backoff strategy used by this executor. -
Uses of BackoffStrategy in software.amazon.awssdk.retries.api.internal.backoff
Classes in software.amazon.awssdk.retries.api.internal.backoff that implement BackoffStrategy Modifier and Type Class Description classExponentialDelayWithJitterStrategy that waits for a random period of time between 0ms and an exponentially increasing amount of time between each subsequent attempt of the same call.classExponentialDelayWithoutJitterStrategy that waits for an exponentially increasing amount of time between each subsequent attempt of the same call.classFixedDelayWithJitterStrategy that waits for a random period of time between 0ms and the provided delay.classFixedDelayWithoutJitterStrategy that waits for a period of time equal to the provided delay.classImmediatelyStrategy that do not back off: retry immediately.
-