Documentation ¶
Index ¶
- Variables
- func Do(ctx context.Context, c Config, f func() error) error
- func Do1[T any](ctx context.Context, c Config, f func() (T, error)) (T, error)
- func Do1WithTimeout[T any](ctx context.Context, c Config, timeout time.Duration, ...) (T, error)
- func Do2[T1, T2 any](ctx context.Context, c Config, f func() (T1, T2, error)) (T1, T2, error)
- func DoWithTimeout(ctx context.Context, c Config, timeout time.Duration, ...) error
- func Retriable(err error) error
- func Sleep(ctx context.Context, duration time.Duration) error
- type Config
- type DelayFn
- type ErrRetriable
- type ExpConfig
- type Exponential
- type FixedConfig
Constants ¶
This section is empty.
Variables ¶
var DefaultExpBackoffConfig = ExpConfig{ Min: 10 * time.Millisecond, Max: 1 * time.Minute, Scale: 2.0, }
DefaultExpBackoffConfig is a suggested configuration
Functions ¶
func Do ¶
Do executes the given function, retrying if necessary.
The given Config is used to calculate the delays before each attempt.
Wrap an error with Retriable to indicate that Do should try again.
If the function returns success, or an error that isn't wrapped, Do returns that value immediately without trying more.
A ErrRetriable error will be logged unless its message is exactly the same as the previous one.
func Do1WithTimeout ¶
func Do1WithTimeout[T any](ctx context.Context, c Config, timeout time.Duration, f func(ctx context.Context) (T, error)) (T, error)
Do1WithTimeout is a single return value version of DoWithTimeout
func DoWithTimeout ¶
func DoWithTimeout(ctx context.Context, c Config, timeout time.Duration, f func(ctx context.Context) error) error
DoWithTimeout is the same as Do, but uses an explicit timeout
Types ¶
type Config ¶
type Config interface { // Delays returns a DelayFn representing the sequence of delays to use between attempts. // Each call to Delays returns a DelayFn representing an independent sequence. Delays() DelayFn }
Config defines retry intervals.
An implementation of Config is normally stateless.
type DelayFn ¶
DelayFn is the type of function that can be called repeatedly to produce delays between attempts. A single value of DelayFn represents a single sequence of delays.
Each call returns the delay before the next attempt, and a boolean value to indicate whether the next attempt is desired. If ok is false, the caller should stop trying and ignore the returned delay value. The caller is not expected to call the function again after receiving false.
In other words, a DelayFn returns a finite or infinite sequence of delays over multiple calls. A false value of the second return value means the end of the sequence.
-- Hey delay function, should I make an attempt? -- Yes, in two seconds (2*time.Second, true). -- Hey delay function, should I make an attempt? -- Yes, in four seconds (4*time.Second, true). -- Hey delay function, should I make an attempt? -- No (0, false).
The delay function must return true as ok from the first call.
Note that the first delay returned by the function is used before the very first attempt. For this reason, in most cases, the first call should return (0, true).
type ErrRetriable ¶
type ErrRetriable struct {
// contains filtered or unexported fields
}
ErrRetriable means the operation that caused the error should be retried.
func (ErrRetriable) Error ¶
func (r ErrRetriable) Error() string
func (ErrRetriable) Unwrap ¶
func (r ErrRetriable) Unwrap() error
Unwrap returns the next error in the error chain.
type ExpConfig ¶
type ExpConfig struct { Min time.Duration Max time.Duration Scale float64 Instant bool // If false, Delays() method will return 0 when first time called and backoff value otherwise. }
ExpConfig is used to configure exponential backoff
type Exponential ¶
type Exponential struct {
// contains filtered or unexported fields
}
Exponential contains the current state of the backoff logic
func NewExpBackoff ¶
func NewExpBackoff(config ExpConfig) *Exponential
NewExpBackoff creates new expBackoff
func (*Exponential) Backoff ¶
func (b *Exponential) Backoff() time.Duration
Backoff returns the duration to wait and updates the inner state
type FixedConfig ¶
type FixedConfig struct { // TryAfter is the delay before the first attempt TryAfter time.Duration // RetryAfter is the delay before each subsequent attempt RetryAfter time.Duration // MaxAttempts is the maximum number of attempts taken; 0 = unlimited MaxAttempts int }
FixedConfig defines fixed retry intervals
func (FixedConfig) Delays ¶
func (c FixedConfig) Delays() DelayFn
Delays implements interface Config