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>
32 lines
1.4 KiB
Go
32 lines
1.4 KiB
Go
// Package state provides interfaces to work with swarm cluster state.
|
|
//
|
|
// The primary interface is Store, which abstracts storage of this cluster
|
|
// state. Store exposes a transactional interface for both reads and writes.
|
|
// To perform a read transaction, View accepts a callback function that it
|
|
// will invoke with a ReadTx object that gives it a consistent view of the
|
|
// state. Similarly, Update accepts a callback function that it will invoke with
|
|
// a Tx object that allows reads and writes to happen without interference from
|
|
// other transactions.
|
|
//
|
|
// This is an example of making an update to a Store:
|
|
//
|
|
// err := store.Update(func(tx state.Tx) {
|
|
// if err := tx.Nodes().Update(newNode); err != nil {
|
|
// reutrn err
|
|
// }
|
|
// return nil
|
|
// })
|
|
// if err != nil {
|
|
// return fmt.Errorf("transaction failed: %v", err)
|
|
// }
|
|
//
|
|
// WatchableStore is a version of Store that exposes watch functionality.
|
|
// These expose a publish/subscribe queue where code can subscribe to
|
|
// changes of interest. This can be combined with the ViewAndWatch function to
|
|
// "fork" a store, by making a snapshot and then applying future changes
|
|
// to keep the copy in sync. This approach lets consumers of the data
|
|
// use their own data structures and implement their own concurrency
|
|
// strategies. It can lead to more efficient code because data consumers
|
|
// don't necessarily have to lock the main data store if they are
|
|
// maintaining their own copies of the state.
|
|
package state
|