1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/sync/options.go

37 lines
740 B
Go
Raw Normal View History

2019-05-31 01:43:23 +02:00
package sync
import (
"github.com/micro/go-micro/v2/store"
"github.com/micro/go-micro/v2/sync/leader"
"github.com/micro/go-micro/v2/sync/lock"
"github.com/micro/go-micro/v2/sync/time"
2019-05-31 01:43:23 +02:00
)
// WithLeader sets the leader election implementation opton
func WithLeader(l leader.Leader) Option {
return func(o *Options) {
o.Leader = l
}
}
// WithLock sets the locking implementation option
func WithLock(l lock.Lock) Option {
return func(o *Options) {
o.Lock = l
}
}
2019-06-12 08:50:04 +02:00
// WithStore sets the store implementation option
func WithStore(s store.Store) Option {
2019-05-31 01:43:23 +02:00
return func(o *Options) {
2019-06-12 08:50:04 +02:00
o.Store = s
2019-05-31 01:43:23 +02:00
}
}
// WithTime sets the time implementation option
func WithTime(t time.Time) Option {
return func(o *Options) {
o.Time = t
}
}