Options of the abortWhen plugin.

interface AbortWhenOptions {
    delay?: number;
}

Properties

Properties

delay?: number

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

0