RegisteredOrchestrationTask interface

A Durable Functions Task.

Extends

Properties

withRetry

Inherited Properties

isCompleted

Whether the task has completed. Note that completion is not equivalent to success.

isFaulted

Whether the task faulted in some way due to error.

result

The result of the task, if completed. Otherwise undefined.

Property Details

withRetry

withRetry: (retryOptions: RetryOptions) => Task

Property Value

(retryOptions: RetryOptions) => Task

Inherited Property Details

isCompleted

Whether the task has completed. Note that completion is not equivalent to success.

isCompleted: boolean

Property Value

boolean

Inherited From Task.isCompleted

isFaulted

Whether the task faulted in some way due to error.

isFaulted: boolean

Property Value

boolean

Inherited From Task.isFaulted

result

The result of the task, if completed. Otherwise undefined.

result?: unknown

Property Value

unknown

Inherited From Task.result