(v?: number)
| 268 | public reconnectionDelayMax(): number; |
| 269 | public reconnectionDelayMax(v?: number): this | number; |
| 270 | public reconnectionDelayMax(v?: number): this | number { |
| 271 | if (v === undefined) return this._reconnectionDelayMax; |
| 272 | this._reconnectionDelayMax = v; |
| 273 | this.backoff?.setMax(v); |
| 274 | return this; |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Sets the connection timeout. `false` to disable |