package backoff
import "github.com/google/trillian/client/backoff"
Package backoff allows retrying an operation with backoff.
Index ¶
Types ¶
type Backoff ¶
type Backoff struct { Min time.Duration // Duration of the first pause. Max time.Duration // Max duration of a pause. Factor float64 // The factor of duration increase between iterations. Jitter bool // Add random noise to pauses. // contains filtered or unexported fields }
Backoff specifies the parameters of the backoff algorithm. Works correctly if 0 < Min <= Max <= 2^62 (nanosec), and Factor >= 1.
func (*Backoff) Duration ¶
Duration returns the time to wait on current retry iteration. Every time Duration is called, the returned value will exponentially increase by Factor until Backoff.Max. If Jitter is enabled, will add an additional random value between 0 and the duration, so the result can at most double.
func (*Backoff) Reset ¶
func (b *Backoff) Reset()
Reset sets the internal state back to first retry iteration.
func (*Backoff) Retry ¶
Retry calls a function until it succeeds or the context is done. It will backoff if the function returns an error. Once the context is done, retries will end and the most recent error will be returned. Backoff is not reset by this function.
Source Files ¶
- Version
- v1.2.1
- Published
- Aug 16, 2018
- Platform
- js/wasm
- Imports
- 3 packages
- Last checked
- 5 hours ago –
Tools for package owners.