nestjs-temporal-core
    Preparing search index...

    Interface ScheduleWorkflowAction

    Schedule action interface for workflow start

    interface ScheduleWorkflowAction {
        args?: unknown[];
        retryPolicy?: Record<string, unknown>;
        taskQueue: string;
        type: "startWorkflow";
        workflowExecutionTimeout?: Duration;
        workflowId?: string;
        workflowRunTimeout?: Duration;
        workflowTaskTimeout?: Duration;
        workflowType: string;
    }
    Index

    Properties

    args?: unknown[]
    retryPolicy?: Record<string, unknown>
    taskQueue: string
    type: "startWorkflow"
    workflowExecutionTimeout?: Duration
    workflowId?: string
    workflowRunTimeout?: Duration
    workflowTaskTimeout?: Duration
    workflowType: string