durable-execution - v0.32.0
    Preparing search index...

    Type Alias FinishedTaskExecution<TOutput>

    Represents a task execution that has reached a terminal state.

    Terminal states include:

    • completed: Successfully finished with output
    • failed: Execution failed (may have been retried)
    • timed_out: Exceeded timeout limit
    • finalize_failed: Parent task's finalize function failed
    • cancelled: Manually cancelled or parent failed

    Once in a terminal state, the task will not execute again.

    Type Parameters

    • TOutput = unknown