Enumeration: CommandStatus
Defined in: src/wirestate-core/types/commands.ts:74
Represents the current state of a command execution.
Enumeration Members
| Enumeration Member | Value | Description | Defined in |
|---|---|---|---|
ERROR | "error" | The command task failed with an error. | src/wirestate-core/types/commands.ts:80 |
PENDING | "pending" | The command task has started but not yet completed. | src/wirestate-core/types/commands.ts:76 |
SETTLED | "settled" | The command task has successfully completed. | src/wirestate-core/types/commands.ts:78 |