retry

package
v0.6.0-beta1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 11, 2022 License: MPL-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func WaitTime added in v0.1.1

func WaitTime(attempt int, random *rand.Rand) time.Duration

WaitTime calculates the wait time based off the attempt number based off exponential backoff with a random delay. It caps at the constant maxWaitTime.

Types

type NonRetryableError added in v0.6.0

type NonRetryableError struct {
	Err error
}

NonRetryableError represents an error returned if the error should not be retried

func (*NonRetryableError) Error added in v0.6.0

func (e *NonRetryableError) Error() string

Error returns an error string

func (*NonRetryableError) Unwrap added in v0.6.0

func (e *NonRetryableError) Unwrap() error

Unwrap returns the underlying error

type Retry

type Retry struct {
	// contains filtered or unexported fields
}

Retry handles executing and retrying a function

func NewRetry

func NewRetry(maxRetry int, seed int64) Retry

NewRetry initializes a retry handler maxRetry is *retries*, so maxRetry of 2 means 3 total tries. -1 retries means indefinite retries

func NewTestRetry

func NewTestRetry(maxRetry int) Retry

NewTestRetry is the test version, returns Retry in test mode (nanosecond retry delay).

func (Retry) Do

func (r Retry) Do(ctx context.Context, f func(context.Context) error, desc string) error

Do calls a function with exponential retries with a random delay.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL