React Executor - v0.0.26
    Preparing search index...

    Interface AbortWhenOptions

    Options of the abortWhen plugin.

    interface AbortWhenOptions {
        delay?: number;
        isSustained?: boolean;
    }
    Index

    Properties

    Properties

    delay?: number

    The minimum delay (in milliseconds) after the observable emits true and aborting the executor — unless the executor is settled or the observable emits false.

    0
    
    isSustained?: boolean

    If true, every new task is immediately aborted if the last value emitted by the observable was true and the delay has expired.

    false