* Get in-memory state for a workspace. * Returns undefined if no state exists.
(workspaceId: string)
| 68 | * Returns undefined if no state exists. |
| 69 | */ |
| 70 | getState(workspaceId: string): TState | undefined { |
| 71 | return this.stateMap.get(workspaceId); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Set in-memory state for a workspace. |
no test coverage detected