Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Backoff ¶
type Backoff struct { // Initial time to wait. A Backoff call will change this value. InitialBackoff time.Duration // Maximum time returned. MaxBackoff time.Duration // For a Linear backoff, InitialBackoff will be multiplied by Multiplier // after each call. Multiplier float64 }
Backoff is a self contained backoff time calculator. This struct should be passed around as a copy as it changes its own fields upon any Backoff call. Backoff is not thread safe. For now only a Linear backoff call is implemented and the Exponential call will be implemented when needed.
func (*Backoff) Exponential ¶ added in v1.4.2
Exponential backoff panics: not implemented, yet.
type Config ¶
type Config struct { // The operation will be retried until StartTimeout has elapsed. 0 means // forever. StartTimeout time.Duration // RetryDelay gives the time elapsed after a failure and before we try // again. Returns 2s by default. RetryDelay func() time.Duration // Max number of retries, 0 means infinite Tries int // ShouldRetry tells whether error should be retried. Nil defaults to always // true. ShouldRetry func(error) bool }
Config represents a retry config
type RetryExhaustedError ¶ added in v1.4.1
type RetryExhaustedError struct {
Err error
}
func (*RetryExhaustedError) Error ¶ added in v1.4.1
func (err *RetryExhaustedError) Error() string
Click to show internal directories.
Click to hide internal directories.