broker/nats: remove unused setPublishOption() (#1234)
broker/nats: remove unused setSubscribeOption()
This commit is contained in:
parent
24d574ae71
commit
d467236f8f
@ -6,16 +6,6 @@ import (
|
|||||||
"github.com/micro/go-micro/v2/broker"
|
"github.com/micro/go-micro/v2/broker"
|
||||||
)
|
)
|
||||||
|
|
||||||
// setSubscribeOption returns a function to setup a context with given value
|
|
||||||
func setSubscribeOption(k, v interface{}) broker.SubscribeOption {
|
|
||||||
return func(o *broker.SubscribeOptions) {
|
|
||||||
if o.Context == nil {
|
|
||||||
o.Context = context.Background()
|
|
||||||
}
|
|
||||||
o.Context = context.WithValue(o.Context, k, v)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// setBrokerOption returns a function to setup a context with given value
|
// setBrokerOption returns a function to setup a context with given value
|
||||||
func setBrokerOption(k, v interface{}) broker.Option {
|
func setBrokerOption(k, v interface{}) broker.Option {
|
||||||
return func(o *broker.Options) {
|
return func(o *broker.Options) {
|
||||||
@ -25,13 +15,3 @@ func setBrokerOption(k, v interface{}) broker.Option {
|
|||||||
o.Context = context.WithValue(o.Context, k, v)
|
o.Context = context.WithValue(o.Context, k, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// setPublishOption returns a function to setup a context with given value
|
|
||||||
func setPublishOption(k, v interface{}) broker.PublishOption {
|
|
||||||
return func(o *broker.PublishOptions) {
|
|
||||||
if o.Context == nil {
|
|
||||||
o.Context = context.Background()
|
|
||||||
}
|
|
||||||
o.Context = context.WithValue(o.Context, k, v)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user