()
| 73 | } |
| 74 | |
| 75 | shutdown() { |
| 76 | for (const {timeout} of this._expirations.values()) clearTimeout(timeout); |
| 77 | if (this._cleanupTimer) { |
| 78 | clearTimeout(this._cleanupTimer); |
| 79 | this._cleanupTimer = null; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Remove expired and empty sessions from the database. |
no outgoing calls
no test coverage detected