mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
17 lines
567 B
Go
17 lines
567 B
Go
package state
|
|
|
|
import (
|
|
"github.com/docker/swarmkit/api"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// A Proposer can propose actions to a cluster.
|
|
type Proposer interface {
|
|
// ProposeValue adds storeAction to the distributed log. If this
|
|
// completes successfully, ProposeValue calls cb to commit the
|
|
// proposed changes. The callback is necessary for the Proposer to make
|
|
// sure that the changes are committed before it interacts further
|
|
// with the store.
|
|
ProposeValue(ctx context.Context, storeAction []*api.StoreAction, cb func()) error
|
|
GetVersion() *api.Version
|
|
}
|