expose useful broker and server methods

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-09-22 13:15:05 +03:00
parent dc5dc6ab5b
commit ec3c1a02fc
2 changed files with 56 additions and 0 deletions

View File

@@ -14,3 +14,13 @@ func FromContext(ctx context.Context) (Server, bool) {
func NewContext(ctx context.Context, s Server) context.Context {
return context.WithValue(ctx, serverKey{}, s)
}
// SetServerSubscriberOption returns a function to setup a context with given value
func SetServerSubscriberOption(k, v interface{}) SubscriberOption {
return func(o *SubscriberOptions) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, k, v)
}
}