2015-06-12 19:52:27 +01:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2018-03-03 11:53:52 +00:00
|
|
|
"context"
|
2021-03-26 15:44:34 +03:00
|
|
|
"crypto/tls"
|
2022-10-26 19:20:37 +03:00
|
|
|
"net"
|
2016-01-03 21:14:33 +00:00
|
|
|
"time"
|
|
|
|
|
2021-10-02 19:55:07 +03:00
|
|
|
"go.unistack.org/micro/v3/broker"
|
|
|
|
"go.unistack.org/micro/v3/codec"
|
|
|
|
"go.unistack.org/micro/v3/logger"
|
2021-12-16 15:03:42 +03:00
|
|
|
"go.unistack.org/micro/v3/metadata"
|
2021-10-02 19:55:07 +03:00
|
|
|
"go.unistack.org/micro/v3/meter"
|
2024-04-22 08:47:50 +03:00
|
|
|
"go.unistack.org/micro/v3/options"
|
2021-10-02 19:55:07 +03:00
|
|
|
"go.unistack.org/micro/v3/register"
|
|
|
|
"go.unistack.org/micro/v3/router"
|
|
|
|
"go.unistack.org/micro/v3/selector"
|
|
|
|
"go.unistack.org/micro/v3/selector/random"
|
|
|
|
"go.unistack.org/micro/v3/tracer"
|
2015-06-12 19:52:27 +01:00
|
|
|
)
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Options holds client options
|
2015-12-31 18:11:46 +00:00
|
|
|
type Options struct {
|
2021-04-27 00:03:05 +03:00
|
|
|
// Selector used to select needed address
|
|
|
|
Selector selector.Selector
|
2021-03-06 19:45:13 +03:00
|
|
|
// Logger used to log messages
|
|
|
|
Logger logger.Logger
|
|
|
|
// Tracer used for tracing
|
|
|
|
Tracer tracer.Tracer
|
|
|
|
// Broker used to publish messages
|
|
|
|
Broker broker.Broker
|
|
|
|
// Meter used for metrics
|
|
|
|
Meter meter.Meter
|
|
|
|
// Context is used for external options
|
|
|
|
Context context.Context
|
2021-09-30 21:00:02 +03:00
|
|
|
// Router used to get route
|
|
|
|
Router router.Router
|
|
|
|
// TLSConfig specifies tls.Config for secure connection
|
|
|
|
TLSConfig *tls.Config
|
2021-04-27 00:03:05 +03:00
|
|
|
// Codecs map
|
|
|
|
Codecs map[string]codec.Codec
|
2021-09-30 20:32:59 +03:00
|
|
|
// Lookup func used to get destination addr
|
|
|
|
Lookup LookupFunc
|
2021-03-06 19:45:13 +03:00
|
|
|
// Proxy is used for proxy requests
|
|
|
|
Proxy string
|
2021-04-27 00:03:05 +03:00
|
|
|
// ContentType is used to select codec
|
2021-03-06 19:45:13 +03:00
|
|
|
ContentType string
|
|
|
|
// Name is the client name
|
|
|
|
Name string
|
|
|
|
// Wrappers contains wrappers
|
2016-04-05 18:07:07 +01:00
|
|
|
Wrappers []Wrapper
|
2021-09-30 21:00:02 +03:00
|
|
|
// CallOptions contains default CallOptions
|
|
|
|
CallOptions CallOptions
|
2021-03-06 19:45:13 +03:00
|
|
|
// PoolSize connection pool size
|
|
|
|
PoolSize int
|
2021-03-06 23:33:37 +03:00
|
|
|
// PoolTTL connection pool ttl
|
2021-03-06 19:45:13 +03:00
|
|
|
PoolTTL time.Duration
|
2022-10-26 19:20:37 +03:00
|
|
|
// ContextDialer used to connect
|
|
|
|
ContextDialer func(context.Context, string) (net.Conn, error)
|
2024-04-22 08:47:50 +03:00
|
|
|
// Hooks can be run before broker Publish/BatchPublish and
|
|
|
|
// Subscribe/BatchSubscribe methods
|
|
|
|
Hooks options.Hooks
|
2015-06-12 19:52:27 +01:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewCallOptions creates new call options struct
|
2020-10-16 09:38:57 +03:00
|
|
|
func NewCallOptions(opts ...CallOption) CallOptions {
|
|
|
|
options := CallOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// CallOptions holds client call options
|
2015-12-31 18:11:46 +00:00
|
|
|
type CallOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Selector selects addr
|
2020-07-01 17:06:59 +01:00
|
|
|
Selector selector.Selector
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context used for deadline
|
|
|
|
Context context.Context
|
2021-09-30 21:00:02 +03:00
|
|
|
// Router used for route
|
|
|
|
Router router.Router
|
2021-03-06 19:45:13 +03:00
|
|
|
// Retry func used for retries
|
|
|
|
Retry RetryFunc
|
|
|
|
// Backoff func used for backoff when retry
|
|
|
|
Backoff BackoffFunc
|
|
|
|
// Network name
|
|
|
|
Network string
|
2021-04-09 23:08:54 +03:00
|
|
|
// Content-Type
|
|
|
|
ContentType string
|
2021-09-30 21:00:02 +03:00
|
|
|
// AuthToken string
|
|
|
|
AuthToken string
|
2021-03-06 19:45:13 +03:00
|
|
|
// Address specifies static addr list
|
|
|
|
Address []string
|
2021-09-30 21:00:02 +03:00
|
|
|
// SelectOptions selector options
|
|
|
|
SelectOptions []selector.SelectOption
|
2021-03-06 19:45:13 +03:00
|
|
|
// StreamTimeout stream timeout
|
2020-03-31 23:22:11 +01:00
|
|
|
StreamTimeout time.Duration
|
2021-03-06 19:45:13 +03:00
|
|
|
// RequestTimeout request timeout
|
|
|
|
RequestTimeout time.Duration
|
2022-11-14 15:29:45 +03:00
|
|
|
// RequestMetadata holds additional metadata for call
|
|
|
|
RequestMetadata metadata.Metadata
|
|
|
|
// ResponseMetadata holds additional metadata from call
|
2022-11-14 16:10:54 +03:00
|
|
|
ResponseMetadata *metadata.Metadata
|
2021-03-06 19:45:13 +03:00
|
|
|
// DialTimeout dial timeout
|
|
|
|
DialTimeout time.Duration
|
2021-09-30 21:00:02 +03:00
|
|
|
// Retries specifies retries num
|
|
|
|
Retries int
|
2022-10-26 19:20:37 +03:00
|
|
|
// ContextDialer used to connect
|
|
|
|
ContextDialer func(context.Context, string) (net.Conn, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextDialer pass ContextDialer to client
|
|
|
|
func ContextDialer(fn func(context.Context, string) (net.Conn, error)) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.ContextDialer = fn
|
|
|
|
}
|
2015-12-31 18:11:46 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Context pass context to client
|
2020-10-16 09:38:57 +03:00
|
|
|
func Context(ctx context.Context) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewPublishOptions create new PublishOptions struct from option
|
2020-10-16 09:38:57 +03:00
|
|
|
func NewPublishOptions(opts ...PublishOption) PublishOptions {
|
|
|
|
options := PublishOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// PublishOptions holds publish options
|
2015-12-31 18:11:46 +00:00
|
|
|
type PublishOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context used for external options
|
2016-01-06 16:25:12 +00:00
|
|
|
Context context.Context
|
2021-03-06 19:45:13 +03:00
|
|
|
// Exchange topic exchange name
|
|
|
|
Exchange string
|
2021-09-30 21:00:02 +03:00
|
|
|
// BodyOnly will publish only message body
|
|
|
|
BodyOnly bool
|
2015-12-09 00:02:45 +00:00
|
|
|
}
|
2015-12-08 19:25:42 +00:00
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewMessageOptions creates message options struct
|
2020-10-16 09:38:57 +03:00
|
|
|
func NewMessageOptions(opts ...MessageOption) MessageOptions {
|
2021-12-16 15:03:42 +03:00
|
|
|
options := MessageOptions{Metadata: metadata.New(1)}
|
2020-10-16 09:38:57 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// MessageOptions holds client message options
|
2018-05-10 17:33:54 +01:00
|
|
|
type MessageOptions struct {
|
2021-12-16 15:03:42 +03:00
|
|
|
// Metadata additional metadata
|
|
|
|
Metadata metadata.Metadata
|
2021-03-06 19:45:13 +03:00
|
|
|
// ContentType specify content-type of message
|
2021-12-16 15:03:42 +03:00
|
|
|
// deprecated
|
2018-05-10 17:33:54 +01:00
|
|
|
ContentType string
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewRequestOptions creates new RequestOptions struct
|
2020-10-16 09:38:57 +03:00
|
|
|
func NewRequestOptions(opts ...RequestOption) RequestOptions {
|
|
|
|
options := RequestOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// RequestOptions holds client request options
|
2015-12-31 18:11:46 +00:00
|
|
|
type RequestOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context used for external options
|
|
|
|
Context context.Context
|
|
|
|
// ContentType specify content-type of message
|
2018-04-14 18:06:52 +01:00
|
|
|
ContentType string
|
2021-03-06 19:45:13 +03:00
|
|
|
// Stream flag
|
2021-02-14 11:28:50 +03:00
|
|
|
Stream bool
|
2015-12-17 20:37:35 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewOptions creates new options struct
|
2020-09-05 02:11:29 +03:00
|
|
|
func NewOptions(opts ...Option) Options {
|
|
|
|
options := Options{
|
2019-12-29 21:07:55 +00:00
|
|
|
Context: context.Background(),
|
2021-02-13 15:35:56 +03:00
|
|
|
ContentType: DefaultContentType,
|
2024-04-22 08:47:50 +03:00
|
|
|
Codecs: DefaultCodecs,
|
2016-04-05 18:07:07 +01:00
|
|
|
CallOptions: CallOptions{
|
2021-03-16 19:09:49 +03:00
|
|
|
Context: context.Background(),
|
2016-11-07 17:46:12 +01:00
|
|
|
Backoff: DefaultBackoff,
|
|
|
|
Retry: DefaultRetry,
|
|
|
|
Retries: DefaultRetries,
|
|
|
|
RequestTimeout: DefaultRequestTimeout,
|
2016-04-05 18:07:07 +01:00
|
|
|
},
|
2024-12-02 13:20:13 +03:00
|
|
|
Lookup: LookupRoute,
|
|
|
|
PoolSize: DefaultPoolSize,
|
|
|
|
PoolTTL: DefaultPoolTTL,
|
|
|
|
Selector: random.NewSelector(),
|
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
Broker: broker.DefaultBroker,
|
|
|
|
Meter: meter.DefaultMeter,
|
|
|
|
Tracer: tracer.DefaultTracer,
|
|
|
|
Router: router.DefaultRouter,
|
2016-01-02 23:16:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
2016-01-02 23:16:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-05 02:11:29 +03:00
|
|
|
return options
|
2016-01-02 23:16:15 +00:00
|
|
|
}
|
|
|
|
|
2015-11-26 12:51:53 +00:00
|
|
|
// Broker to be used for pub/sub
|
2015-06-12 19:52:27 +01:00
|
|
|
func Broker(b broker.Broker) Option {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Broker = b
|
2015-06-12 19:52:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Tracer to be used for tracing
|
|
|
|
func Tracer(t tracer.Tracer) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Tracer = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Logger to be used for log mesages
|
2020-08-29 17:44:49 +03:00
|
|
|
func Logger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Meter to be used for metrics
|
|
|
|
func Meter(m meter.Meter) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Meter = m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 12:51:53 +00:00
|
|
|
// Codec to be used to encode/decode requests for a given content type
|
2020-11-23 16:18:47 +03:00
|
|
|
func Codec(contentType string, c codec.Codec) Option {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Codecs[contentType] = c
|
2015-11-25 19:50:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 11:28:50 +03:00
|
|
|
// ContentType used by default if not specified
|
2015-11-25 19:50:05 +00:00
|
|
|
func ContentType(ct string) Option {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *Options) {
|
|
|
|
o.ContentType = ct
|
2015-11-25 19:50:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 15:22:36 +01:00
|
|
|
// Proxy sets the proxy address
|
|
|
|
func Proxy(addr string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Proxy = addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 00:46:14 +01:00
|
|
|
// PoolSize sets the connection pool size
|
|
|
|
func PoolSize(d int) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.PoolSize = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 15:05:19 +08:00
|
|
|
// PoolTTL sets the connection pool ttl
|
2016-06-07 00:46:14 +01:00
|
|
|
func PoolTTL(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.PoolTTL = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 13:17:32 +03:00
|
|
|
// Register sets the routers register
|
|
|
|
func Register(r register.Register) Option {
|
2020-08-17 22:53:20 +01:00
|
|
|
return func(o *Options) {
|
2020-08-29 17:44:49 +03:00
|
|
|
if o.Router != nil {
|
2021-09-30 21:13:13 +03:00
|
|
|
_ = o.Router.Init(router.Register(r))
|
2020-08-29 17:44:49 +03:00
|
|
|
}
|
2020-08-17 22:53:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:06:59 +01:00
|
|
|
// Router is used to lookup routes for a service
|
|
|
|
func Router(r router.Router) Option {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *Options) {
|
2020-07-01 17:06:59 +01:00
|
|
|
o.Router = r
|
2015-06-12 19:52:27 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-26 20:36:42 +00:00
|
|
|
|
2020-07-01 17:06:59 +01:00
|
|
|
// Selector is used to select a route
|
2015-12-09 19:23:16 +00:00
|
|
|
func Selector(s selector.Selector) Option {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *Options) {
|
|
|
|
o.Selector = s
|
2015-12-07 21:09:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 11:28:50 +03:00
|
|
|
// Backoff is used to set the backoff function used when retrying Calls
|
2016-04-05 20:04:37 +01:00
|
|
|
func Backoff(fn BackoffFunc) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.CallOptions.Backoff = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 13:17:32 +03:00
|
|
|
// Name sets the client name
|
|
|
|
func Name(n string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Name = n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:44:45 +01:00
|
|
|
// Lookup sets the lookup function to use for resolving service names
|
|
|
|
func Lookup(l LookupFunc) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Lookup = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-26 15:44:34 +03:00
|
|
|
// TLSConfig specifies a *tls.Config
|
|
|
|
func TLSConfig(t *tls.Config) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
// set the internal tls
|
|
|
|
o.TLSConfig = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Retries sets the retry count when making the request.
|
2016-01-02 23:16:15 +00:00
|
|
|
func Retries(i int) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 18:07:07 +01:00
|
|
|
o.CallOptions.Retries = i
|
2016-01-02 23:16:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 16:47:40 -04:00
|
|
|
// Retry sets the retry function to be used when re-trying.
|
|
|
|
func Retry(fn RetryFunc) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.CallOptions.Retry = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// RequestTimeout is the request timeout.
|
2016-01-03 21:14:33 +00:00
|
|
|
func RequestTimeout(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 18:07:07 +01:00
|
|
|
o.CallOptions.RequestTimeout = d
|
2016-01-03 21:14:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 23:22:11 +01:00
|
|
|
// StreamTimeout sets the stream timeout
|
|
|
|
func StreamTimeout(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.CallOptions.StreamTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 16:16:01 +03:00
|
|
|
// DialTimeout sets the dial timeout
|
2016-01-03 21:25:03 +00:00
|
|
|
func DialTimeout(d time.Duration) Option {
|
|
|
|
return func(o *Options) {
|
2016-04-05 18:07:07 +01:00
|
|
|
o.CallOptions.DialTimeout = d
|
2016-01-03 21:25:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-23 10:50:53 +00:00
|
|
|
// WithExchange sets the exchange to route a message through
|
2021-07-27 23:58:06 +03:00
|
|
|
// Deprecated
|
2019-02-23 10:50:53 +00:00
|
|
|
func WithExchange(e string) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.Exchange = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-24 16:14:42 +03:00
|
|
|
// PublishExchange sets the exchange to route a message through
|
|
|
|
func PublishExchange(e string) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.Exchange = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:14:24 +03:00
|
|
|
// WithBodyOnly publish only message body
|
2021-07-24 16:14:42 +03:00
|
|
|
// DERECATED
|
2021-06-11 14:14:24 +03:00
|
|
|
func WithBodyOnly(b bool) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.BodyOnly = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-24 16:14:42 +03:00
|
|
|
// PublishBodyOnly publish only message body
|
|
|
|
func PublishBodyOnly(b bool) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.BodyOnly = b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-28 19:03:37 +03:00
|
|
|
// PublishContext sets the context in publish options
|
|
|
|
func PublishContext(ctx context.Context) PublishOption {
|
|
|
|
return func(o *PublishOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 19:20:37 +03:00
|
|
|
// WithContextDialer pass ContextDialer to client call
|
|
|
|
func WithContextDialer(fn func(context.Context, string) (net.Conn, error)) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.ContextDialer = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 23:08:54 +03:00
|
|
|
// WithContentType specifies call content type
|
|
|
|
func WithContentType(ct string) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.ContentType = ct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-26 20:51:13 +01:00
|
|
|
// WithAddress sets the remote addresses to use rather than using service discovery
|
|
|
|
func WithAddress(a ...string) CallOption {
|
2018-04-14 16:16:58 +01:00
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Address = a
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 20:04:37 +01:00
|
|
|
// WithBackoff is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithBackoff(fn BackoffFunc) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Backoff = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 09:40:11 +01:00
|
|
|
// WithRetry is a CallOption which overrides that which
|
2016-11-03 10:45:31 +01:00
|
|
|
// set in Options.CallOptions
|
2016-11-07 09:40:11 +01:00
|
|
|
func WithRetry(fn RetryFunc) CallOption {
|
2016-11-03 10:45:31 +01:00
|
|
|
return func(o *CallOptions) {
|
2016-11-07 09:40:11 +01:00
|
|
|
o.Retry = fn
|
2016-11-03 10:45:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:07 +01:00
|
|
|
// WithRetries is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithRetries(i int) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Retries = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-14 15:29:45 +03:00
|
|
|
// WithResponseMetadata is a CallOption which adds metadata.Metadata to Options.CallOptions
|
2022-11-14 16:10:54 +03:00
|
|
|
func WithResponseMetadata(md *metadata.Metadata) CallOption {
|
2022-11-14 15:29:45 +03:00
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.ResponseMetadata = md
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithRequestMetadata is a CallOption which adds metadata.Metadata to Options.CallOptions
|
|
|
|
func WithRequestMetadata(md metadata.Metadata) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.RequestMetadata = md
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:07 +01:00
|
|
|
// WithRequestTimeout is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithRequestTimeout(d time.Duration) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.RequestTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 23:22:11 +01:00
|
|
|
// WithStreamTimeout sets the stream timeout
|
|
|
|
func WithStreamTimeout(d time.Duration) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.StreamTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:07 +01:00
|
|
|
// WithDialTimeout is a CallOption which overrides that which
|
|
|
|
// set in Options.CallOptions
|
|
|
|
func WithDialTimeout(d time.Duration) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.DialTimeout = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-31 11:36:33 +01:00
|
|
|
// WithAuthToken is a CallOption which overrides the
|
2020-03-31 12:44:34 +01:00
|
|
|
// authorization header with the services own auth token
|
2021-07-09 10:47:40 +03:00
|
|
|
func WithAuthToken(t string) CallOption {
|
2020-03-31 12:44:34 +01:00
|
|
|
return func(o *CallOptions) {
|
2021-07-09 10:47:40 +03:00
|
|
|
o.AuthToken = t
|
2020-03-31 12:44:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:06:59 +01:00
|
|
|
// WithRouter sets the router to use for this call
|
|
|
|
func WithRouter(r router.Router) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Router = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithSelector sets the selector to use for this call
|
|
|
|
func WithSelector(s selector.Selector) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.Selector = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-02 17:03:08 +01:00
|
|
|
// WithSelectOptions sets the options to pass to the selector for this call
|
|
|
|
func WithSelectOptions(sops ...selector.SelectOption) CallOption {
|
|
|
|
return func(o *CallOptions) {
|
|
|
|
o.SelectOptions = sops
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// WithMessageContentType sets the message content type
|
2021-07-27 23:58:06 +03:00
|
|
|
// Deprecated
|
2020-02-18 14:18:59 +03:00
|
|
|
func WithMessageContentType(ct string) MessageOption {
|
|
|
|
return func(o *MessageOptions) {
|
2021-12-16 15:03:42 +03:00
|
|
|
o.Metadata.Set(metadata.HeaderContentType, ct)
|
2020-02-18 14:18:59 +03:00
|
|
|
o.ContentType = ct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-24 16:14:42 +03:00
|
|
|
// MessageContentType sets the message content type
|
|
|
|
func MessageContentType(ct string) MessageOption {
|
|
|
|
return func(o *MessageOptions) {
|
2021-12-16 15:03:42 +03:00
|
|
|
o.Metadata.Set(metadata.HeaderContentType, ct)
|
2021-07-24 16:14:42 +03:00
|
|
|
o.ContentType = ct
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-16 15:03:42 +03:00
|
|
|
// MessageMetadata sets the message metadata
|
|
|
|
func MessageMetadata(k, v string) MessageOption {
|
|
|
|
return func(o *MessageOptions) {
|
|
|
|
o.Metadata.Set(k, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 23:08:54 +03:00
|
|
|
// StreamingRequest specifies that request is streaming
|
|
|
|
func StreamingRequest(b bool) RequestOption {
|
2018-04-14 18:06:52 +01:00
|
|
|
return func(o *RequestOptions) {
|
2021-04-09 23:08:54 +03:00
|
|
|
o.Stream = b
|
2018-04-14 18:06:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 23:08:54 +03:00
|
|
|
// RequestContentType specifies request content type
|
|
|
|
func RequestContentType(ct string) RequestOption {
|
2015-12-31 18:11:46 +00:00
|
|
|
return func(o *RequestOptions) {
|
2021-04-09 23:08:54 +03:00
|
|
|
o.ContentType = ct
|
2015-12-17 20:37:35 +00:00
|
|
|
}
|
|
|
|
}
|
2024-04-22 08:47:50 +03:00
|
|
|
|
|
|
|
// Hooks sets hook runs before action
|
|
|
|
func Hooks(h ...options.Hook) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Hooks = append(o.Hooks, h...)
|
|
|
|
}
|
|
|
|
}
|