Documentation
¶
Index ¶
- func Exec(retryableFunc RetryableFunc, strategies ...Strategy) (err error)
- func ExecContext(ctx context.Context, retryableFunc RetryableContextFunc, ...) (err error)
- func GetUnrecoverableErrorCause(unrecoverableErr error) (cause error, ok bool)
- func IsUnrecoverable(err error) bool
- func Sleep(ctx context.Context, delay time.Duration) bool
- func Unrecoverable(err error) error
- type RetryableContextFunc
- type RetryableFunc
- type Strategy
- func Compose(strategies ...Strategy) Strategy
- func DefaultStrategy() Strategy
- func ExpStrategy(seed time.Duration) Strategy
- func FixedDelay(delay time.Duration) Strategy
- func FromDelays(delays ...time.Duration) Strategy
- func Function(retryFunc StrategyFunc) Strategy
- func Infinite() Strategy
- func MaxAttempts(attempts int) Strategy
- func PowDelay(seed time.Duration, base float64) Strategy
- func RandomDelay(min time.Duration, max time.Duration) Strategy
- type StrategyFunc
- type UnrecoverableError
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Exec ¶
func Exec( retryableFunc RetryableFunc, strategies ...Strategy, ) (err error)
func ExecContext ¶
func ExecContext( ctx context.Context, retryableFunc RetryableContextFunc, strategies ...Strategy, ) (err error)
func IsUnrecoverable ¶
func Unrecoverable ¶
Types ¶
type RetryableContextFunc ¶
type RetryableFunc ¶
type Strategy ¶
func DefaultStrategy ¶
func DefaultStrategy() Strategy
func ExpStrategy ¶
func FixedDelay ¶
func FromDelays ¶
func Function ¶
func Function(retryFunc StrategyFunc) Strategy
func MaxAttempts ¶
type StrategyFunc ¶
type UnrecoverableError ¶
type UnrecoverableError struct {
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.