()
| 43 | } |
| 44 | |
| 45 | notifyNewOutbound() { |
| 46 | this._lastActivity = Date.now(); |
| 47 | if (this._running && !this._outPending) { |
| 48 | if (this._outTimer) clearTimeout(this._outTimer); |
| 49 | this._scheduleOutbound(100); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | _isIdle() { |
| 54 | return (Date.now() - this._lastActivity) > IDLE_THRESHOLD; |
no test coverage detected