micro/client/context.go

29 lines
651 B
Go
Raw Normal View History

2016-01-28 21:23:24 +03:00
package client
import (
2018-03-03 14:53:52 +03:00
"context"
2016-01-28 21:23:24 +03:00
)
type clientKey struct{}
// FromContext get client from context
2016-01-28 21:23:24 +03:00
func FromContext(ctx context.Context) (Client, bool) {
c, ok := ctx.Value(clientKey{}).(Client)
return c, ok
}
// NewContext put client in context
2016-01-28 21:23:24 +03:00
func NewContext(ctx context.Context, c Client) context.Context {
return context.WithValue(ctx, clientKey{}, c)
}
// SetPublishOption returns a function to setup a context with given value
func SetPublishOption(k, v interface{}) PublishOption {
return func(o *PublishOptions) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, k, v)
}
}