2015-01-14 02:31:27 +03:00
|
|
|
package registry
|
|
|
|
|
|
|
|
type Registry interface {
|
2015-05-26 00:14:28 +03:00
|
|
|
Register(*Service) error
|
|
|
|
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)
|
2015-06-01 20:55:27 +03:00
|
|
|
Watch() (Watcher, error)
|
2015-12-20 00:56:14 +03:00
|
|
|
String() string
|
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
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
var (
|
2015-05-23 22:04:16 +03:00
|
|
|
DefaultRegistry = newConsulRegistry([]string{})
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
2015-05-23 22:04:16 +03:00
|
|
|
func NewRegistry(addrs []string, opt ...Option) Registry {
|
|
|
|
return newConsulRegistry(addrs, opt...)
|
|
|
|
}
|
|
|
|
|
2015-05-26 00:14:28 +03:00
|
|
|
func Register(s *Service) error {
|
2015-01-14 02:31:27 +03:00
|
|
|
return DefaultRegistry.Register(s)
|
|
|
|
}
|
|
|
|
|
2015-05-26 00:14:28 +03:00
|
|
|
func Deregister(s *Service) error {
|
2015-01-14 02:31:27 +03:00
|
|
|
return DefaultRegistry.Deregister(s)
|
|
|
|
}
|
|
|
|
|
2015-11-08 04:48:48 +03:00
|
|
|
func GetService(name string) ([]*Service, error) {
|
2015-01-14 02:31:27 +03:00
|
|
|
return DefaultRegistry.GetService(name)
|
|
|
|
}
|
2015-04-03 01:52:49 +03:00
|
|
|
|
2015-05-26 00:14:28 +03:00
|
|
|
func ListServices() ([]*Service, error) {
|
2015-04-03 01:52:49 +03:00
|
|
|
return DefaultRegistry.ListServices()
|
|
|
|
}
|
2015-12-05 04:12:29 +03:00
|
|
|
|
|
|
|
func Watch() (Watcher, error) {
|
|
|
|
return DefaultRegistry.Watch()
|
|
|
|
}
|
2015-12-20 00:56:14 +03:00
|
|
|
|
|
|
|
func String() string {
|
|
|
|
return DefaultRegistry.String()
|
|
|
|
}
|