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

    Interface IEventEmitOptions

    Runtime options for a single event emission.

    interface IEventEmitOptions {
        failureMode?: EventEmissionFailureMode;
        report?: boolean;
        signal?: AbortSignal;
        throwOnError?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Controls error behavior during listener execution.

    • fail-fast (default): throw on first failure.
    • aggregate: continue execution and collect listener errors.
    report?: boolean

    When true, emit(...)/dependency event emitter returns IEventEmitReport.

    signal?: AbortSignal

    Cooperative cancellation signal for the emission lifecycle.

    throwOnError?: boolean

    When false, suppress throwing even if listener errors occurred. Defaults to true.