nestjs-temporal-core
    Preparing search index...

    Interface ScheduleWorkflowOptions

    Schedule workflow options. retryPolicy is loosely typed for backward compatibility; prefer the SDK's RetryPolicy shape.

    interface ScheduleWorkflowOptions {
        args?: unknown[];
        retryPolicy?: Record<string, unknown> | RetryPolicy;
        taskQueue?: string;
        workflowExecutionTimeout?: Duration;
        workflowId?: string;
        workflowRunTimeout?: Duration;
        workflowTaskTimeout?: Duration;
    }
    Index

    Properties

    args?: unknown[]
    retryPolicy?: Record<string, unknown> | RetryPolicy
    taskQueue?: string
    workflowExecutionTimeout?: Duration
    workflowId?: string
    workflowRunTimeout?: Duration
    workflowTaskTimeout?: Duration