@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface IRuntimeRecoveryOptions

    Polling rule that can resume the runtime after a pause episode.

    interface IRuntimeRecoveryOptions {
        check: () => boolean | Promise<boolean>;
        everyMs: number;
        id?: string;
    }
    Index

    Properties

    Properties

    check: () => boolean | Promise<boolean>

    Recovery predicate that must pass before Runner auto-resumes.

    everyMs: number

    Polling interval in milliseconds.

    id?: string

    Optional stable id for replacing or tracking the rule.