StartTask enqueues one executable run for an already-created task.
( ctx context.Context, id string, req ExecutionRequest, actor ActorContext, )
| 641 | |
| 642 | // StartTask enqueues one executable run for an already-created task. |
| 643 | func (m *Service) StartTask( |
| 644 | ctx context.Context, |
| 645 | id string, |
| 646 | req ExecutionRequest, |
| 647 | actor ActorContext, |
| 648 | ) (*Execution, error) { |
| 649 | return m.executeTaskBoundary(ctx, id, req, ExecutionActionStart, actor) |
| 650 | } |
| 651 | |
| 652 | // ApproveTask records one approval decision for a manual-approval task that is |
| 653 | // currently awaiting a decision, then enqueues the approved run. |
nothing calls this directly
no test coverage detected