reconnectionDelayMax property

num get reconnectionDelayMax

Sets the maximum delay between reconnections.

@param {Number} delay @return {Manager} self or value @api public

Implementation

num get reconnectionDelayMax => _reconnectionDelayMax;
set reconnectionDelayMax (num v)

Implementation

set reconnectionDelayMax(num v) {
  _reconnectionDelayMax = v;
  if (backoff != null) {
    backoff!.max = v;
  }
}