(event Event)
| 25 | // EventRecorder produces complete or in-progress events. |
| 26 | type EventRecorder interface { |
| 27 | Record(event Event) |
| 28 | // Begin records initial facts that can be updated until invocation completion. |
| 29 | Begin(Event) PendingEvent |
| 30 | } |
no outgoing calls