micro/client/backoff.go

16 lines
356 B
Go
Raw Normal View History

2016-04-05 22:04:37 +03:00
package client
import (
2018-03-03 14:53:52 +03:00
"context"
2016-04-05 22:04:37 +03:00
"time"
"go.unistack.org/micro/v3/util/backoff"
2016-04-05 22:04:37 +03:00
)
// BackoffFunc is the backoff call func
2016-04-05 22:04:37 +03:00
type BackoffFunc func(ctx context.Context, req Request, attempts int) (time.Duration, error)
func exponentialBackoff(ctx context.Context, req Request, attempts int) (time.Duration, error) {
return backoff.Do(attempts), nil
2016-04-05 22:04:37 +03:00
}