Events return the channel where event source pushes all captured events. At this point, the event has the full state associated with it. For example, the full process state or the event call stack.
()
| 48 | // At this point, the event has the full state associated with it. For example, |
| 49 | // the full process state or the event call stack. |
| 50 | Events() <-chan *event.Event |
| 51 | // SetFilter attaches the filter to the event source. Only events that match |
| 52 | // the filter are forwarded to the event source output channel. |
| 53 | SetFilter(f filter.Filter) |
no outgoing calls