(ctx context.Context, run Run)
| 162 | // RunStore is the persistence surface for durable task-run records. |
| 163 | type RunStore interface { |
| 164 | CreateTaskRun(ctx context.Context, run Run) error |
| 165 | UpdateTaskRun(ctx context.Context, run Run) error |
| 166 | GetTaskRun(ctx context.Context, id string) (Run, error) |
| 167 | ListTaskRuns(ctx context.Context, query RunQuery) ([]Run, error) |
no outgoing calls