(namespace: string)
| 183 | } |
| 184 | |
| 185 | getSessionsByNamespace(namespace: string): Session[] { |
| 186 | return this.sessionCache.getSessionsByNamespace(namespace) |
| 187 | } |
| 188 | |
| 189 | getFutureScheduledMessageCounts(sessionIds: string[], now: number = Date.now()): Map<string, number> { |
| 190 | return this.store.messages.countFutureScheduledBySessionIds(sessionIds, now) |
no outgoing calls
no test coverage detected