ITaskStore Type
Pluggable store for externalized task state, grouped by parent session key.
Instance members
| Instance member |
Description
|
Full Usage:
this.GetAsync
Parameters:
string
taskId : string
Returns: Task<TaskRecord option>
Modifiers: abstract |
Load a single task record by id.
|
Full Usage:
this.ListAsync
Parameters:
string
Returns: Task<TaskRecord array>
Modifiers: abstract |
List all task records for a session, ordered by Sequence ascending.
|
Full Usage:
this.SaveAsync
Parameters:
string
record : TaskRecord
Returns: Task
Modifiers: abstract |
Insert or replace a task record (rewrites its per-task file and the session index). The record's `Sequence` is assigned/preserved by the store.
|
Nao