Class FixedDelayBackoffStrategy
java.lang.Object
software.amazon.awssdk.core.retry.backoff.FixedDelayBackoffStrategy
- All Implemented Interfaces:
BackoffStrategy
Deprecated.
Simple backoff strategy that always uses a fixed delay for the delay before the next retry attempt.
-
Field Summary
Fields inherited from interface software.amazon.awssdk.core.retry.backoff.BackoffStrategy
RETRIES_ATTEMPTED_CEILING
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Compute the delay before the next retry request.static FixedDelayBackoffStrategy
Deprecated.boolean
Deprecated.int
hashCode()
Deprecated.toString()
Deprecated.Methods inherited from interface software.amazon.awssdk.core.retry.backoff.BackoffStrategy
calculateExponentialDelay
-
Method Details
-
computeDelayBeforeNextRetry
Deprecated.Description copied from interface:BackoffStrategy
Compute the delay before the next retry request. This strategy is only consulted when there will be a next retry.- Specified by:
computeDelayBeforeNextRetry
in interfaceBackoffStrategy
- Parameters:
context
- Context about the state of the last request and information about the number of requests made.- Returns:
- Amount of time in milliseconds to wait before the next attempt. Must be non-negative (can be zero).
-
create
Deprecated. -
equals
Deprecated. -
hashCode
public int hashCode()Deprecated. -
toString
Deprecated.
-
BackoffStrategy
andBackoffStrategy.fixedDelay(Duration)
.