sdk

package
v1.0.18 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NeverAbort added in v1.0.15

func NeverAbort() bool

func RetryForError

func RetryForError(api func() error, retries int, abort func() bool, sleep time.Duration, logger log.Logger) (err error)

RetryForError call api(), if api() returns a Retryable error, sleep until Retryable.GetRetryAfter() duration, retry call api(). sleep 'sleep' duration, call 'abort()', if abort() returns true, returns the last error.

func SleepForRetry added in v1.0.15

func SleepForRetry(sleep, after time.Duration, abort func() bool) bool

SleepForRetry sleep until 'after' duration elapsed. call 'abort()' every 'sleep' interval, if abort() returns true, returns false. if 'sleep' <= 0, 'sleep' = time.Second. if 'sleep' > 'after', 'sleep' = 'after'.

Types

type NetError added in v1.0.11

type NetError struct {
	Err        error
	RetryAfter time.Duration
}

func NewNetError added in v1.0.11

func NewNetError(err error, retryAfter ...time.Duration) *NetError

func (*NetError) Error added in v1.0.11

func (ne *NetError) Error() string

func (*NetError) GetRetryAfter added in v1.0.15

func (ne *NetError) GetRetryAfter() time.Duration

func (*NetError) Unwrap added in v1.0.11

func (ne *NetError) Unwrap() error

type Retryable added in v1.0.16

type Retryable interface {
	GetRetryAfter() time.Duration
}

Directories

Path Synopsis
fdk

Jump to

Keyboard shortcuts

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