(sessionId: string)
| 33 | } |
| 34 | |
| 35 | getSession(sessionId: string): Session | undefined { |
| 36 | return this.sessions.get(sessionId) |
| 37 | } |
| 38 | |
| 39 | getSessionByNamespace(sessionId: string, namespace: string): Session | undefined { |
| 40 | const session = this.sessions.get(sessionId) |
no test coverage detected