(ctx context.Context, spec CreateTask, actor ActorContext)
| 9 | // Manager is the task-domain authority for task and run lifecycle operations. |
| 10 | type Manager interface { |
| 11 | CreateTask(ctx context.Context, spec CreateTask, actor ActorContext) (*Task, error) |
| 12 | CreateChildTask(ctx context.Context, parentTaskID string, spec CreateTask, actor ActorContext) (*Task, error) |
| 13 | DeleteTask(ctx context.Context, id string, actor ActorContext) error |
| 14 | UpdateTask(ctx context.Context, id string, patch Patch, actor ActorContext) (*Task, error) |
no outgoing calls