(sessionKey)
| 2678 | if (this._sessionCache.size < this._maxCachedSessions) { |
| 2679 | return; |
| 2680 | } |
| 2681 | const ref = this._sessionCache.get(key); |
| 2682 | if (ref !== void 0 && ref.deref() === void 0) { |
| 2683 | this._sessionCache.delete(key); |
| 2684 | } |
| 2685 | }); |
| 2686 | } |