set -1 to disable timeout
This commit is contained in:
@@ -137,7 +137,7 @@ public class Manager extends Emitter {
|
|||||||
.setMin(this.reconnectionDelay())
|
.setMin(this.reconnectionDelay())
|
||||||
.setMax(this.reconnectionDelayMax())
|
.setMax(this.reconnectionDelayMax())
|
||||||
.setJitter(this.randomizationFactor());
|
.setJitter(this.randomizationFactor());
|
||||||
this.timeout(opts.timeout < 0 ? 20000 : opts.timeout);
|
this.timeout(opts.timeout);
|
||||||
this.readyState = ReadyState.CLOSED;
|
this.readyState = ReadyState.CLOSED;
|
||||||
this.uri = uri;
|
this.uri = uri;
|
||||||
this.connected = new HashSet<Socket>();
|
this.connected = new HashSet<Socket>();
|
||||||
@@ -572,6 +572,10 @@ public class Manager extends Emitter {
|
|||||||
public long reconnectionDelay;
|
public long reconnectionDelay;
|
||||||
public long reconnectionDelayMax;
|
public long reconnectionDelayMax;
|
||||||
public double randomizationFactor;
|
public double randomizationFactor;
|
||||||
public long timeout = -1;
|
|
||||||
|
/**
|
||||||
|
* Connection timeout (ms). Set -1 to disable.
|
||||||
|
*/
|
||||||
|
public long timeout = 20000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user