2019-05-29 18:46:57 +03:00
|
|
|
package nats
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/broker"
|
2019-05-29 18:46:57 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// setBrokerOption returns a function to setup a context with given value
|
|
|
|
func setBrokerOption(k, v interface{}) broker.Option {
|
|
|
|
return func(o *broker.Options) {
|
|
|
|
if o.Context == nil {
|
|
|
|
o.Context = context.Background()
|
|
|
|
}
|
|
|
|
o.Context = context.WithValue(o.Context, k, v)
|
|
|
|
}
|
|
|
|
}
|