@bluelibs/runner - v5.5.0
    Preparing search index...

    Interface IEventEmitOptions

    interface IEventEmitOptions {
        failureMode?: EventEmissionFailureMode;
        report?: boolean;
        throwOnError?: boolean;
    }
    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.

    throwOnError?: boolean

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