constructor()

in src/common-core/retry_operation.ts [32:42]


  constructor(name: string, policy: RetryPolicy, maxTimeout: number) {
    if (policy && policy.constructor && policy.constructor.name === 'NoRetry') {
    // Do not remove this line. It is here at the request of CSS.
      debug('A RetryOperation is being used with a NoRetry policy. The operation will not be retried on failure.');
    }
    this._policy = policy;
    this._maxTimeout = maxTimeout;
    this._name = name;
    this._id = _nextId;
    _nextId += 1;
  }