arvo-event-handler
    Preparing search index...

    Type Alias ArvoResumableState<T>

    ArvoResumableState: OrchestrationExecutionMemoryRecord<
        {
            events: {
                consumed: InferArvoEvent<ArvoEvent>
                | null;
                expected: Record<string, InferArvoEvent<ArvoEvent>[]> | null;
                produced: InferArvoEvent<ArvoEvent>[];
            };
            initEventId: string;
            parentSubject: string
            | null;
            state$$: T | null;
            status: "active" | "done";
            subject: string;
        },
    >

    State structure persisted in memory for ArvoResumable workflows.

    Extends base orchestration state with resumable-specific fields including event collection, workflow status tracking, and custom state management.

    Type Parameters

    • T extends Record<string, any>