2016-12-14 18:41:48 +03:00
|
|
|
// Package registry is an interface for service discovery
|
2015-01-14 02:31:27 +03:00
|
|
|
package registry
|
|
|
|
|
2016-02-25 15:42:31 +03:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2016-01-31 00:13:34 +03:00
|
|
|
// The registry provides an interface for service discovery
|
|
|
|
// and an abstraction over varying implementations
|
|
|
|
// {consul, etcd, zookeeper, ...}
|
2015-01-14 02:31:27 +03:00
|
|
|
type Registry interface {
|
2016-01-27 02:32:27 +03:00
|
|
|
Register(*Service, ...RegisterOption) error
|
2015-05-26 00:14:28 +03:00
|
|
|
Deregister(*Service) error
|
2015-11-08 04:48:48 +03:00
|
|
|
GetService(string) ([]*Service, error)
|
2015-05-26 00:14:28 +03:00
|
|
|
ListServices() ([]*Service, error)
|
2018-02-19 20:12:37 +03:00
|
|
|
Watch(...WatchOption) (Watcher, error)
|
2015-12-20 00:56:14 +03:00
|
|
|
String() string
|
2017-09-28 13:16:56 +03:00
|
|
|
Options() Options
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2015-12-19 21:28:08 +03:00
|
|
|
type Option func(*Options)
|
2015-05-16 02:34:02 +03:00
|
|
|
|
2016-01-27 02:32:27 +03:00
|
|
|
type RegisterOption func(*RegisterOptions)
|
|
|
|
|
2018-02-19 20:12:37 +03:00
|
|
|
type WatchOption func(*WatchOptions)
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
var (
|
2016-03-16 01:20:21 +03:00
|
|
|
DefaultRegistry = newConsulRegistry()
|
2016-02-25 15:42:31 +03:00
|
|
|
|
|
|
|
ErrNotFound = errors.New("not found")
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
2016-03-16 01:20:21 +03:00
|
|
|
func NewRegistry(opts ...Option) Registry {
|
|
|
|
return newConsulRegistry(opts...)
|
2015-05-23 22:04:16 +03:00
|
|
|
}
|