Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NeverAbort ¶ added in v1.0.15
func NeverAbort() error
func RetryForError ¶
func RetryForError(api func() error, retries int, abort func() error, sleep time.Duration, logger log.Logger) (err error)
RetryForError loop max `retries` count to call api(). returns the error if api() returns a non Retryable error. returns the error if abort() returns error. call SleepForRetry(sleep, after, abort), if api() returns a Retryable error.
func SleepForRetry ¶ added in v1.0.15
SleepForRetry loop to sleep(`sleep`) until 'after' duration elapsed. call 'abort()' every 'sleep' interval, if abort() returns error, returns it. if 'sleep' <= 0, 'sleep' = time.Second. if 'sleep' > 'after', 'sleep' = 'after'.
Types ¶
type NetError ¶ added in v1.0.11
func NewNetError ¶ added in v1.0.11
func (*NetError) GetRetryAfter ¶ added in v1.0.15
Click to show internal directories.
Click to hide internal directories.