Documentation
    Preparing search index...

    Represents a successful workflow submission.

    type WorkflowSubmission<T> = {
        attachable: true;
        invocationId: string;
        status: "Accepted" | "PreviouslyAccepted";
    }

    Type Parameters

    • T
    Index

    Properties

    attachable: true
    invocationId: string

    The invocation id of the workflow. You can use that id to with the introspection tools (restate cli, logging, metrics)

    status: "Accepted" | "PreviouslyAccepted"