(ctx context.Context, taskID string, actor ActorIdentity)
| 212 | // TriageStore is the persistence surface for durable actor-scoped task triage state. |
| 213 | type TriageStore interface { |
| 214 | GetTaskTriageState(ctx context.Context, taskID string, actor ActorIdentity) (TriageState, error) |
| 215 | UpsertTaskTriageState(ctx context.Context, state TriageState) error |
| 216 | } |
| 217 |
no outgoing calls