durable-execution - v0.8.0
    Preparing search index...

    Type Alias DurableTaskEnqueueOptions

    The options for enqueuing a task. If provided, the task will be enqueued with the given options. If not provided, the task will be enqueued with the default options provided in the task options.

    type DurableTaskEnqueueOptions = {
        retryOptions?: DurableTaskRetryOptions;
        timeoutMs?: number;
        sleepMsBeforeRun?: number;
    }
    Index

    Properties

    timeoutMs?: number
    sleepMsBeforeRun?: number