micro/registry/options.go

75 lines
1.3 KiB
Go
Raw Normal View History

2015-12-19 18:28:08 +00:00
package registry
import (
2018-03-03 11:53:52 +00:00
"context"
2016-01-16 23:39:47 +00:00
"crypto/tls"
2015-12-19 18:28:08 +00:00
"time"
)
type Options struct {
2016-03-15 22:20:21 +00:00
Addrs []string
2016-01-16 23:39:47 +00:00
Timeout time.Duration
Secure bool
TLSConfig *tls.Config
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
2015-12-19 18:28:08 +00:00
}
2016-01-26 23:32:27 +00:00
type RegisterOptions struct {
TTL time.Duration
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
2018-02-19 17:12:37 +00:00
type WatchOptions struct {
// Specify a service to watch
// If blank, the watch is for all services
Service string
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
2016-03-15 22:20:21 +00:00
// Addrs is the registry addresses to use
func Addrs(addrs ...string) Option {
return func(o *Options) {
o.Addrs = addrs
}
}
2015-12-19 18:28:08 +00:00
func Timeout(t time.Duration) Option {
return func(o *Options) {
o.Timeout = t
}
}
2016-01-16 20:25:18 +00:00
// Secure communication with the registry
func Secure(b bool) Option {
return func(o *Options) {
o.Secure = b
}
}
2016-01-16 23:39:47 +00:00
// Specify TLS Config
func TLSConfig(t *tls.Config) Option {
return func(o *Options) {
o.TLSConfig = t
}
}
2016-01-26 23:32:27 +00:00
2016-01-27 12:23:18 +00:00
func RegisterTTL(t time.Duration) RegisterOption {
2016-01-26 23:32:27 +00:00
return func(o *RegisterOptions) {
o.TTL = t
}
}
2018-02-19 17:12:37 +00:00
// Watch a service
func WatchService(name string) WatchOption {
return func(o *WatchOptions) {
o.Service = name
}
}