Notify notifies the subscription of a new matching event.
(evt events.Event)
| 83 | |
| 84 | // Notify notifies the subscription of a new matching event. |
| 85 | func (s *Subscription) Notify(evt events.Event) { |
| 86 | if s == nil { |
| 87 | return |
| 88 | } |
| 89 | s.handler.Notify(evt) |
| 90 | } |
nothing calls this directly
no test coverage detected