micro/registry/registry.go

50 lines
899 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
GetService(string) (*Service, error)
ListServices() ([]*Service, error)
}
type Service struct {
Name string
2015-05-27 00:39:48 +03:00
Metadata map[string]string
Nodes []*Node
}
type Node struct {
Id string
Address string
Port int
2015-05-27 00:39:48 +03:00
Metadata map[string]string
2015-01-14 02:31:27 +03:00
}
type options struct{}
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)
}
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()
}