mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5f7577bbb4
Signed-off-by: bin liu <liubin0329@gmail.com>
22 lines
734 B
Go
22 lines
734 B
Go
package hostdiscovery
|
|
|
|
import "net"
|
|
|
|
// JoinCallback provides a callback event for new node joining the cluster
|
|
type JoinCallback func(entries []net.IP)
|
|
|
|
// ActiveCallback provides a callback event for active discovery event
|
|
type ActiveCallback func()
|
|
|
|
// LeaveCallback provides a callback event for node leaving the cluster
|
|
type LeaveCallback func(entries []net.IP)
|
|
|
|
// HostDiscovery primary interface
|
|
type HostDiscovery interface {
|
|
//Watch Node join and leave cluster events
|
|
Watch(activeCallback ActiveCallback, joinCallback JoinCallback, leaveCallback LeaveCallback) error
|
|
// StopDiscovery stops the discovery process
|
|
StopDiscovery() error
|
|
// Fetch returns a list of host IPs that are currently discovered
|
|
Fetch() []net.IP
|
|
}
|