(ctx context.Context, eventID string)
| 200 | // EventSequenceStore is the persistence surface for stable task event sequencing used by live reads. |
| 201 | type EventSequenceStore interface { |
| 202 | GetTaskEventRecord(ctx context.Context, eventID string) (EventRecord, error) |
| 203 | ListTaskEventRecords(ctx context.Context, query EventRecordQuery) ([]EventRecord, error) |
| 204 | } |
| 205 |
no outgoing calls