ixfx
    Preparing search index...

    Type Alias ArrayOptions

    type ArrayOptions = {
        debugLifecycle: boolean;
        interval: Interval;
        lazy: Lazy;
        signal: AbortSignal;
        whenStopped: "continue" | "reset";
    }
    Index

    Properties

    debugLifecycle: boolean
    interval: Interval

    Interval between each item being read. Default: 5ms.

    lazy: Lazy
    signal: AbortSignal
    whenStopped: "continue" | "reset"

    Behaviour when reactive stops, for example due to having no subscribers

    • continue: iteration continues through array where it left off
    • reset: iteration begins from start of array