NextEvent returns the next available event from the event stream.
()
| 19 | type EventReader interface { |
| 20 | // NextEvent returns the next available event from the event stream. |
| 21 | NextEvent() (Event, error) |
| 22 | |
| 23 | // Close closes the reader. Subsequent calls to NextEvent will return |
| 24 | // an error. |
no outgoing calls