1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/options.go

59 lines
1.2 KiB
Go
Raw Normal View History

package client
import (
2015-11-20 18:17:33 +02:00
"github.com/micro/go-micro/broker"
"github.com/micro/go-micro/registry"
"github.com/micro/go-micro/transport"
)
type options struct {
2015-11-25 21:50:05 +02:00
contentType string
codecs map[string]CodecFunc
broker broker.Broker
registry registry.Registry
transport transport.Transport
2015-11-26 22:36:42 +02:00
wrappers []Wrapper
}
2015-11-26 14:51:53 +02:00
// Broker to be used for pub/sub
func Broker(b broker.Broker) Option {
return func(o *options) {
o.broker = b
}
}
2015-11-26 14:51:53 +02:00
// Codec to be used to encode/decode requests for a given content type
2015-11-25 21:50:05 +02:00
func Codec(contentType string, cf CodecFunc) Option {
return func(o *options) {
o.codecs[contentType] = cf
}
}
2015-11-26 14:51:53 +02:00
// Default content type of the client
2015-11-25 21:50:05 +02:00
func ContentType(ct string) Option {
return func(o *options) {
o.contentType = ct
}
}
2015-11-26 14:51:53 +02:00
// Registry to find nodes for a given service
func Registry(r registry.Registry) Option {
return func(o *options) {
o.registry = r
}
}
2015-11-26 14:51:53 +02:00
// Transport to use for communication e.g http, rabbitmq, etc
func Transport(t transport.Transport) Option {
return func(o *options) {
o.transport = t
}
}
2015-11-26 22:36:42 +02:00
// Adds a Wrapper to a list of options passed into the client
func Wrap(w Wrapper) Option {
return func(o *options) {
o.wrappers = append(o.wrappers, w)
}
}