retryutil

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2018 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Retry

func Retry(interval time.Duration, timeout time.Duration, f func() (bool, error)) error

Retry is a wrapper around RetryWorker that provides a real RetryTicker

func RetryWorker

func RetryWorker(
	interval time.Duration,
	timeout time.Duration,
	tick RetryTicker,
	f func() (bool, error)) error

RetryWorker calls ConditionFunc until either: * it returns boolean true * a timeout expires * an error occurs

Types

type RetryTicker

type RetryTicker interface {
	Stop()
	Tick()
}

RetryTicker is a wrapper aroung time.Tick, that allows to mock its implementation

type Ticker

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

Ticker is a real implementation of RetryTicker interface

func (*Ticker) Stop

func (t *Ticker) Stop()

func (*Ticker) Tick

func (t *Ticker) Tick()

Jump to

Keyboard shortcuts

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