mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

- Move DiscoverNew() and DiscoverDelete() methods into the new interface - Add DatastoreUpdate notification - Now this interface can be implemented by any drivers, not only network drivers Signed-off-by: Alessandro Boch <aboch@docker.com>
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package discoverapi
|
|
|
|
// Discover is an interface to be implemented by the componenet interested in receiving discover events
|
|
// like new node joining the cluster or datastore updates
|
|
type Discover interface {
|
|
// DiscoverNew is a notification for a new discovery event, Example:a new node joining a cluster
|
|
DiscoverNew(dType DiscoveryType, data interface{}) error
|
|
|
|
// DiscoverDelete is a notification for a discovery delete event, Example:a node leaving a cluster
|
|
DiscoverDelete(dType DiscoveryType, data interface{}) error
|
|
}
|
|
|
|
// DiscoveryType represents the type of discovery element the DiscoverNew function is invoked on
|
|
type DiscoveryType int
|
|
|
|
const (
|
|
// NodeDiscovery represents Node join/leave events provided by discovery
|
|
NodeDiscovery = iota + 1
|
|
// DatastoreUpdate represents a add/remove datastore event
|
|
DatastoreUpdate
|
|
)
|
|
|
|
// NodeDiscoveryData represents the structure backing the node discovery data json string
|
|
type NodeDiscoveryData struct {
|
|
Address string
|
|
Self bool
|
|
}
|
|
|
|
// DatastoreUpdateData is the data for the datastore update event message
|
|
type DatastoreUpdateData struct {
|
|
Provider string
|
|
Address string
|
|
Config interface{}
|
|
}
|