(
sessionId: string,
namespace: string
)
| 204 | } |
| 205 | |
| 206 | resolveSessionAccess( |
| 207 | sessionId: string, |
| 208 | namespace: string |
| 209 | ): { ok: true; sessionId: string; session: Session } | { ok: false; reason: 'not-found' | 'access-denied' } { |
| 210 | return this.sessionCache.resolveSessionAccess(sessionId, namespace) |
| 211 | } |
| 212 | |
| 213 | getActiveSessions(): Session[] { |
| 214 | return this.sessionCache.getActiveSessions() |
no outgoing calls
no test coverage detected