class AWS::Flow::ExponentialRetryOptions
Exponential retry options for the {ActivityClient#exponential_retry} method.
Public Instance Methods
next_retry_delay_seconds(first_attempt, recorded_failure, attempts)
click to toggle source
@api private
# File lib/aws/decider/options.rb, line 332 def next_retry_delay_seconds(first_attempt, recorded_failure, attempts) raise IllegalArgumentException "Attempt number is #{attempts}, when it needs to be greater than 1" if @maximum_attempts end end