EventProcessor is notified about Compose operations and tasks
| 98 | |
| 99 | // EventProcessor is notified about Compose operations and tasks |
| 100 | type EventProcessor interface { |
| 101 | // Start is triggered as a Compose operation is starting with context |
| 102 | Start(ctx context.Context, operation string) |
| 103 | // On notify about (sub)task and progress processing operation |
| 104 | On(events ...Resource) |
| 105 | // Done is triggered as a Compose operation completed |
| 106 | Done(operation string, success bool) |
| 107 | } |
no outgoing calls
no test coverage detected