micro/broker/options.go

114 lines
2.2 KiB
Go
Raw Normal View History

2015-12-23 22:07:26 +03:00
package broker
import (
2016-01-17 02:39:47 +03:00
"crypto/tls"
2016-01-20 18:22:44 +03:00
"github.com/micro/go-micro/registry"
"golang.org/x/net/context"
)
type Options struct {
2016-03-16 01:12:28 +03:00
Addrs []string
2016-01-17 02:39:47 +03:00
Secure bool
Codec Codec
2016-01-17 02:39:47 +03:00
TLSConfig *tls.Config
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
2015-12-23 22:07:26 +03:00
type PublishOptions struct {
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
}
2015-12-23 22:07:26 +03:00
type SubscribeOptions struct {
// AutoAck defaults to true. When a handler returns
// with a nil error the message is acked.
2015-12-23 22:07:26 +03:00
AutoAck bool
2015-12-23 23:05:47 +03:00
// Subscribers with the same queue name
// will create a shared subscription where each
// receives a subset of messages.
Queue string
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
2015-12-23 22:07:26 +03:00
}
type Option func(*Options)
type PublishOption func(*PublishOptions)
type SubscribeOption func(*SubscribeOptions)
2016-01-20 18:22:44 +03:00
type contextKeyT string
var (
registryKey = contextKeyT("github.com/micro/go-micro/registry")
)
2016-01-17 01:13:02 +03:00
func newSubscribeOptions(opts ...SubscribeOption) SubscribeOptions {
opt := SubscribeOptions{
AutoAck: true,
}
for _, o := range opts {
o(&opt)
}
return opt
}
2016-03-16 01:12:28 +03:00
// Addrs sets the host addresses to be used by the broker
func Addrs(addrs ...string) Option {
return func(o *Options) {
o.Addrs = addrs
}
}
2015-12-23 22:07:26 +03:00
// DisableAutoAck will disable auto acking of messages
// after they have been handled.
func DisableAutoAck() SubscribeOption {
return func(o *SubscribeOptions) {
o.AutoAck = false
}
}
2016-05-10 12:55:18 +03:00
// Queue sets the name of the queue to share messages on
func Queue(name string) SubscribeOption {
2015-12-23 23:05:47 +03:00
return func(o *SubscribeOptions) {
o.Queue = name
}
}
2016-01-20 18:22:44 +03:00
func Registry(r registry.Registry) Option {
return func(o *Options) {
o.Context = context.WithValue(o.Context, registryKey, r)
}
}
2016-01-17 01:13:02 +03:00
// Secure communication with the broker
func Secure(b bool) Option {
return func(o *Options) {
o.Secure = b
2015-12-23 22:07:26 +03:00
}
}
2016-01-17 02:39:47 +03:00
// Codec sets the codec used for encoding/decoding used where
// a broker does not support headers
func SetCodec(c Codec) Option {
return func(o *Options) {
o.Codec = c
}
}
2016-01-17 02:39:47 +03:00
// Specify TLS Config
func TLSConfig(t *tls.Config) Option {
return func(o *Options) {
o.TLSConfig = t
}
}