Add watcher comments
This commit is contained in:
parent
0b08f15010
commit
011a3dc9e3
@ -1,10 +1,15 @@
|
||||
package registry
|
||||
|
||||
// Watcher is an interface that returns updates
|
||||
// about services within the registry.
|
||||
type Watcher interface {
|
||||
// Next is a blocking call
|
||||
Next() (*Result, error)
|
||||
Stop()
|
||||
}
|
||||
|
||||
// Result is returned by a call to Next on
|
||||
// the watcher. Actions can be create, update, delete
|
||||
type Result struct {
|
||||
Action string
|
||||
Service *Service
|
||||
|
Loading…
Reference in New Issue
Block a user