Documentation
¶
Overview ¶
Package strategy defines repeater's strategy and implements some. Strategy result is a channel acting like time.Timer ot time.Tick
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Backoff ¶
type Backoff struct { Duration time.Duration Repeats int Factor float64 Jitter bool // contains filtered or unexported fields }
Backoff implements strategy.Interface for exponential-backoff it starts from 100ms (by default, if no Duration set) and goes in steps with last * math.Pow(factor, attempt) optional jitter randomize intervals a little bit.
type FixedDelay ¶
FixedDelay implements strategy.Interface for fixed intervals up to max repeats
func (*FixedDelay) Start ¶
func (s *FixedDelay) Start(ctx context.Context) <-chan struct{}
Start returns channel, similar to time.Timer then publishing signals to channel ch for retries attempt. can be terminated (canceled) via context.
Click to show internal directories.
Click to hide internal directories.