micro/client/backoff.go

15 lines
320 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"
"github.com/micro/go-micro/v3/util/backoff"
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
}