(v?: number)
| 251 | public randomizationFactor(): number; |
| 252 | public randomizationFactor(v?: number): this | number; |
| 253 | public randomizationFactor(v?: number): this | number { |
| 254 | if (v === undefined) return this._randomizationFactor; |
| 255 | this._randomizationFactor = v; |
| 256 | this.backoff?.setJitter(v); |
| 257 | return this; |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Sets the maximum delay between reconnections. |
no outgoing calls
no test coverage detected