2019-05-31 02:43:23 +03:00
|
|
|
// Package sync is a distributed synchronization framework
|
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
2019-10-03 11:46:20 +03:00
|
|
|
"github.com/micro/go-micro/store"
|
2019-05-31 02:43:23 +03:00
|
|
|
"github.com/micro/go-micro/sync/leader"
|
|
|
|
"github.com/micro/go-micro/sync/lock"
|
|
|
|
"github.com/micro/go-micro/sync/task"
|
|
|
|
"github.com/micro/go-micro/sync/time"
|
|
|
|
)
|
|
|
|
|
2019-06-11 20:21:33 +03:00
|
|
|
// Map provides synchronized access to key-value storage.
|
2019-06-12 09:50:04 +03:00
|
|
|
// It uses the store interface and lock interface to
|
2019-05-31 02:43:23 +03:00
|
|
|
// provide a consistent storage mechanism.
|
2019-06-11 20:21:33 +03:00
|
|
|
type Map interface {
|
2019-05-31 02:43:23 +03:00
|
|
|
// Read value with given key
|
|
|
|
Read(key, val interface{}) error
|
|
|
|
// Write value with given key
|
|
|
|
Write(key, val interface{}) error
|
|
|
|
// Delete value with given key
|
|
|
|
Delete(key interface{}) error
|
|
|
|
// Iterate over all key/vals. Value changes are saved
|
|
|
|
Iterate(func(key, val interface{}) error) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cron is a distributed scheduler using leader election
|
|
|
|
// and distributed task runners. It uses the leader and
|
|
|
|
// task interfaces.
|
|
|
|
type Cron interface {
|
|
|
|
Schedule(task.Schedule, task.Command) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type Options struct {
|
|
|
|
Leader leader.Leader
|
|
|
|
Lock lock.Lock
|
2019-06-12 09:50:04 +03:00
|
|
|
Store store.Store
|
2019-05-31 02:43:23 +03:00
|
|
|
Task task.Task
|
|
|
|
Time time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type Option func(o *Options)
|