micro/registry/registry.go

45 lines
863 B
Go
Raw Normal View History

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