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

    Interface ExecutionJournal

    Per-execution registry that allows middleware and tasks to share state. A new journal is created for each top-level task execution unless explicitly forwarded.

    interface ExecutionJournal {
        get<T>(key: JournalKey<T>): T | undefined;
        has<T>(key: JournalKey<T>): boolean;
        set<T>(key: JournalKey<T>, value: T, options?: JournalSetOptions): void;
    }
    Index

    Methods

    Methods