micro/registry/options.go

52 lines
867 B
Go
Raw Normal View History

2015-12-19 21:28:08 +03:00
package registry
import (
2016-01-17 02:39:47 +03:00
"crypto/tls"
2015-12-19 21:28:08 +03:00
"time"
"golang.org/x/net/context"
2015-12-19 21:28:08 +03:00
)
type Options struct {
2016-01-17 02:39:47 +03: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 21:28:08 +03:00
}
2016-01-27 02:32:27 +03:00
type RegisterOptions struct {
TTL time.Duration
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
2015-12-19 21:28:08 +03:00
func Timeout(t time.Duration) Option {
return func(o *Options) {
o.Timeout = t
}
}
2016-01-16 23:25:18 +03:00
// Secure communication with the registry
func Secure(b bool) Option {
return func(o *Options) {
o.Secure = b
}
}
2016-01-17 02:39:47 +03:00
// Specify TLS Config
func TLSConfig(t *tls.Config) Option {
return func(o *Options) {
o.TLSConfig = t
}
}
2016-01-27 02:32:27 +03:00
2016-01-27 15:23:18 +03:00
func RegisterTTL(t time.Duration) RegisterOption {
2016-01-27 02:32:27 +03:00
return func(o *RegisterOptions) {
o.TTL = t
}
}