1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/sync/sync.go

54 lines
1010 B
Go
Raw Normal View History

2019-05-31 01:43:23 +02:00
// Package sync is a distributed synchronization framework
package sync
import (
2020-04-11 11:37:54 +02:00
"errors"
"time"
2019-05-31 01:43:23 +02:00
)
2020-04-11 11:37:54 +02:00
var (
ErrLockTimeout = errors.New("lock timeout")
)
// Sync is an interface for synchronization
type Sync interface {
// Initialise options
Init(...Option) error
// Return the options
Options() Options
// Elect a leader
Leader(id string, opts ...LeaderOption) (Leader, error)
// Lock acquires a lock
Lock(id string, opts ...LockOption) error
// Unlock releases a lock
Unlock(id string) error
// Sync implementation
String() string
2019-05-31 01:43:23 +02:00
}
2020-04-11 11:37:54 +02:00
// Leader provides leadership election
type Leader interface {
// resign leadership
Resign() error
// status returns when leadership is lost
Status() chan bool
2019-05-31 01:43:23 +02:00
}
type Options struct {
2020-04-11 11:37:54 +02:00
Nodes []string
Prefix string
2019-05-31 01:43:23 +02:00
}
type Option func(o *Options)
2020-04-11 11:37:54 +02:00
type LeaderOptions struct {}
type LeaderOption func(o *LeaderOptions)
type LockOptions struct {
TTL time.Duration
Wait time.Duration
}
type LockOption func(o *LockOptions)