go-pattern-examples/resiliency/06_circuit_breaker/breaker_options.go

76 lines
1.7 KiB
Go
Raw Normal View History

2020-05-10 17:03:24 +03:00
package circuit
import "time"
2020-05-21 11:02:28 +03:00
//BreakConditionWatcher check state
type BreakConditionWatcher func(counts counters) bool
//StateChangedEventHandler set event handle
type StateChangedEventHandler func(name string, from State, to State)
//Option set Options
type Option func(opts *Options)
2020-05-10 17:03:24 +03:00
//Options for breaker
type Options struct {
2020-05-11 09:31:25 +03:00
Name string
Expiry time.Time
Interval, Timeout time.Duration
MaxRequests uint32
2020-05-21 11:02:28 +03:00
WhenToBreak BreakConditionWatcher //是否应该断开电路(打开电路开关)
2020-05-11 09:31:25 +03:00
OnStateChanged StateChangedEventHandler
2020-05-10 17:03:24 +03:00
}
2020-05-11 17:00:45 +03:00
//Name of breaker
func Name(name string) Option {
2020-05-10 17:03:24 +03:00
return func(opts *Options) {
opts.Name = name
}
}
2020-05-11 13:01:25 +03:00
//Interval of breaker
func Interval(interval time.Duration) Option {
return func(opts *Options) {
opts.Interval = interval
}
}
//Timeout of breaker
func Timeout(timeout time.Duration) Option {
return func(opts *Options) {
opts.Timeout = timeout
}
}
// MaxRequests is the maximum number of requests allowed to pass through
// when the CircuitBreaker is half-open.
// If MaxRequests is 0, the CircuitBreaker allows only 1 request.
//MaxRequests of breaker
func MaxRequests(maxRequests uint32) Option {
return func(opts *Options) {
opts.MaxRequests = maxRequests
}
}
//Expiry of breaker
func Expiry(expiry time.Time) Option {
2020-05-10 17:03:24 +03:00
return func(opts *Options) {
opts.Expiry = expiry
}
}
2020-05-11 13:01:25 +03:00
//OnStateChanged set handle of ChangedHandle
func OnStateChanged(handler StateChangedEventHandler) Option {
2020-05-10 17:03:24 +03:00
return func(opts *Options) {
opts.OnStateChanged = handler
}
}
2020-05-21 11:02:28 +03:00
//BreakIf check traffic state ,to see if request can go
func BreakIf(whenCondition BreakConditionWatcher) Option {
2020-05-10 17:03:24 +03:00
return func(opts *Options) {
2020-05-21 11:02:28 +03:00
opts.WhenToBreak = whenCondition
2020-05-10 17:03:24 +03:00
}
}