Class FixedDelayBackoffStrategy
java.lang.Object
software.amazon.awssdk.core.retry.backoff.FixedDelayBackoffStrategy
- All Implemented Interfaces:
 BackoffStrategy
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 TypeMethodDescriptionCompute the delay before the next retry request.static FixedDelayBackoffStrategybooleaninthashCode()toString()Methods inherited from interface software.amazon.awssdk.core.retry.backoff.BackoffStrategy
calculateExponentialDelay 
- 
Method Details
- 
computeDelayBeforeNextRetry
Description copied from interface:BackoffStrategyCompute the delay before the next retry request. This strategy is only consulted when there will be a next retry.- Specified by:
 computeDelayBeforeNextRetryin 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
 - 
equals
 - 
hashCode
public int hashCode() - 
toString
 
 -