(sessionId: string)
| 191 | } |
| 192 | |
| 193 | getSession(sessionId: string): Session | undefined { |
| 194 | return this.sessionCache.getSession(sessionId) ?? this.sessionCache.refreshSession(sessionId) ?? undefined |
| 195 | } |
| 196 | |
| 197 | getSessionByNamespace(sessionId: string, namespace: string): Session | undefined { |
| 198 | const session = this.sessionCache.getSessionByNamespace(sessionId, namespace) |