ExecProcess is a process spawned in container via Task.Exec call. The only difference from a regular `Process` is that exec process can delete self, while task process requires slightly more complex logic and needs to be deleted through the task manager.
| 53 | // The only difference from a regular `Process` is that exec process can delete self, |
| 54 | // while task process requires slightly more complex logic and needs to be deleted through the task manager. |
| 55 | type ExecProcess interface { |
| 56 | Process |
| 57 | |
| 58 | // Delete deletes the process |
| 59 | Delete(ctx context.Context) (*Exit, error) |
| 60 | } |
| 61 | |
| 62 | // Task is the runtime object for an executing container |
| 63 | type Task interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…