Canceler cancels a build.
| 39 | |
| 40 | // Canceler cancels a build. |
| 41 | type Canceler interface { |
| 42 | // Cancel cancels the provided execution. |
| 43 | Cancel(ctx context.Context, repo *types.RepositoryCore, execution *types.Execution) error |
| 44 | } |
| 45 | |
| 46 | // New returns a cancellation service that encapsulates |
| 47 | // all cancellation operations. |
no outgoing calls
no test coverage detected
searching dependent graphs…