Options of the retryWhen plugin.

interface RetryWhenOptions {
    delay?: number;
    isEager?: boolean;
}

Properties

Properties

delay?: number

The delay in milliseconds after true is emitted by the observer and before the executor is retried. If during this delay false is emitted, then executor isn't retried.

0
isEager?: boolean

If true then executor is retried even if it isn't active.

false