* Set in-memory state for a workspace.
(workspaceId: string, state: TState)
| 75 | * Set in-memory state for a workspace. |
| 76 | */ |
| 77 | setState(workspaceId: string, state: TState): void { |
| 78 | this.stateMap.set(workspaceId, state); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Delete in-memory state for a workspace. |
no test coverage detected