* Delete in-memory state for a workspace. * Does NOT delete the persisted file (use deletePersisted for that).
(workspaceId: string)
| 83 | * Does NOT delete the persisted file (use deletePersisted for that). |
| 84 | */ |
| 85 | deleteState(workspaceId: string): void { |
| 86 | this.stateMap.delete(workspaceId); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Check if in-memory state exists for a workspace. |
no test coverage detected