You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
452 B
32 lines
452 B
package backoff
|
|
|
|
import "time"
|
|
|
|
// Backoff used for retry sleep backoff
|
|
type Backoff interface {
|
|
Next() bool
|
|
Reset()
|
|
}
|
|
|
|
// ConstantBackoff implements Backoff interface with constant sleep time
|
|
type ConstantBackoff struct {
|
|
Sleep time.Duration
|
|
Max int
|
|
|
|
tried int
|
|
}
|
|
|
|
func (c *ConstantBackoff) Next() bool {
|
|
c.tried++
|
|
if c.tried > c.Max {
|
|
return false
|
|
}
|
|
|
|
time.Sleep(c.Sleep)
|
|
return true
|
|
}
|
|
|
|
func (c *ConstantBackoff) Reset() {
|
|
c.tried = 0
|
|
}
|