MCPcopy
hub / github.com/socketio/socket.io / reconnectionDelayMax

Method reconnectionDelayMax

packages/socket.io-client/lib/manager.ts:270–275  ·  view source on GitHub ↗
(v?: number)

Source from the content-addressed store, hash-verified

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

Callers 1

constructorMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected