Type Alias Eventstate

Eventstate: {
    compensatedBy?: string;
    end?: tasks.End;
    exclusive?: boolean;
    name?: string;
    onEvents?: tasks.Onevents[];
    timeouts?: {
        actionExecTimeout?: tasks.ActionExecTimeout;
        eventTimeout?: tasks.EventTimeout;
        stateExecTimeout?: tasks.StateExecTimeout;
    };
    type?: "EVENT";
} & unknown

A workflow state that waits for one or more CloudEvents, then consumes them and invokes one or more actions sequentially or in parallel.

Type Declaration