Merge pull request 'fix impl interface' (#346) from devstigneev/micro:fix_impl_mevent into v3

Reviewed-on: #346
This commit is contained in:
Василий Толстов 2024-07-01 12:26:53 +03:00
commit 7dc8f088c9
2 changed files with 8 additions and 0 deletions

View File

@ -373,6 +373,10 @@ func (m *memoryEvent) SetError(err error) {
m.err = err
}
func (m *memoryEvent) Context() context.Context {
return m.opts.Context
}
func (m *memorySubscriber) Options() broker.SubscribeOptions {
return m.opts
}

View File

@ -305,6 +305,10 @@ func (t *tunEvent) SetError(err error) {
t.err = err
}
func (t *tunEvent) Context() context.Context {
return context.TODO()
}
// NewBroker returns new tunnel broker
func NewBroker(opts ...broker.Option) (broker.Broker, error) {
options := broker.NewOptions(opts...)