micro/registry/watcher.go

57 lines
1.1 KiB
Go
Raw Normal View History

2015-12-05 04:12:29 +03:00
package registry
2019-09-23 19:25:15 +03:00
import "time"
2015-12-05 05:05:06 +03:00
// Watcher is an interface that returns updates
// about services within the registry.
2015-12-05 04:12:29 +03:00
type Watcher interface {
2015-12-05 05:05:06 +03:00
// Next is a blocking call
2015-12-05 04:12:29 +03:00
Next() (*Result, error)
Stop()
}
2015-12-05 05:05:06 +03:00
// Result is returned by a call to Next on
// the watcher. Actions can be create, update, delete
2015-12-05 04:12:29 +03:00
type Result struct {
Action string
Service *Service
}
2019-09-23 19:25:15 +03:00
// EventType defines registry event type
type EventType int
const (
// Create is emitted when a new service is registered
Create EventType = iota
// Delete is emitted when an existing service is deregistered
2019-09-23 19:25:15 +03:00
Delete
// Update is emitted when an existing service is updated
2019-09-23 19:25:15 +03:00
Update
)
// String returns human readable event type
func (t EventType) String() string {
switch t {
case Create:
return "create"
case Delete:
return "delete"
case Update:
return "update"
default:
return "unknown"
}
}
// Event is registry event
type Event struct {
// Id is registry id
Id string
// Type defines type of event
Type EventType
// Timestamp is event timestamp
Timestamp time.Time
// Service is registry service
Service *Service
}