You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package retry
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/tal-tech/go-zero/core/retry/backoff"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
// WithDisable disables the retry behaviour on this call, or this interceptor.
|
|
// It's semantically the same to `WithMax(0)`
|
|
func WithDisable() *CallOption {
|
|
return WithMax(0)
|
|
}
|
|
|
|
// WithMax sets the maximum number of retries on this call, or this interceptor.
|
|
func WithMax(maxRetries int) *CallOption {
|
|
return &CallOption{apply: func(options *options) {
|
|
options.max = maxRetries
|
|
}}
|
|
}
|
|
|
|
// WithBackoff sets the `BackoffFunc` used to control time between retries.
|
|
func WithBackoff(backoffFunc backoff.Func) *CallOption {
|
|
return &CallOption{apply: func(o *options) {
|
|
o.backoffFunc = backoffFunc
|
|
}}
|
|
}
|
|
|
|
// WithCodes Allow code to be retried.
|
|
func WithCodes(retryCodes ...codes.Code) *CallOption {
|
|
return &CallOption{apply: func(o *options) {
|
|
o.codes = retryCodes
|
|
}}
|
|
}
|
|
|
|
// WithPerRetryTimeout timeout for each retry
|
|
func WithPerRetryTimeout(timeout time.Duration) *CallOption {
|
|
return &CallOption{apply: func(o *options) {
|
|
o.perCallTimeout = timeout
|
|
}}
|
|
}
|