Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackOff ¶
type BackOff struct { *backoff.ExponentialBackOff MinJobInterval time.Duration }
BackOff is an exponential backoff implementation for long running jobs. In long running jobs, an operation() that fails after a long Duration should not increments the backoff period. If operation() takes more than MinJobInterval, Reset() is called in NextBackOff().
func NewBackOff ¶
func NewBackOff(backOff *backoff.ExponentialBackOff) *BackOff
NewBackOff creates an instance of BackOff using default values.
func (*BackOff) NextBackOff ¶
NextBackOff calculates the next backoff interval.
Click to show internal directories.
Click to hide internal directories.