()
| 25 | } |
| 26 | |
| 27 | getSessions(): Session[] { |
| 28 | return Array.from(this.sessions.values()) |
| 29 | } |
| 30 | |
| 31 | getSessionsByNamespace(namespace: string): Session[] { |
| 32 | return this.getSessions().filter((session) => session.namespace === namespace) |
no outgoing calls
no test coverage detected