Member Junction
    Preparing search index...

    Interface PipelineExecutorOptions

    Optional runtime controls for a pipeline execution.

    interface PipelineExecutorOptions {
        deadlineMs?: number;
        signal?: AbortSignal;
    }
    Index

    Properties

    Properties

    deadlineMs?: number

    Wall-clock budget for the whole pipeline. Checked between stages + map batches.

    signal?: AbortSignal

    Caller cancellation; honored at the same checkpoints as the deadline.