EventCancel indicates that a command execution has been canceled.
| 107 | |
| 108 | // EventCancel indicates that a command execution has been canceled. |
| 109 | type EventCancel struct { |
| 110 | context context.Context |
| 111 | } |
| 112 | |
| 113 | // NewEventCancel creates a new EventCancel with the given context. |
| 114 | func NewEventCancel(ctx context.Context) EventCancel { |
nothing calls this directly
no outgoing calls
no test coverage detected