Skip to content

DurableJobRunStatus

enum

Namespace: Orleans.DurableJobs

Represents the status of a durable job execution.
public enum DurableJobRunStatus

Fields

NameValueDescription
Completed0The job completed successfully and should be removed from the queue.
InProgress1The job execution remains in progress and should be polled again after the specified delay.
Failed2The job failed and should be processed through the retry policy.
RescheduleRequested3The current execution completed successfully and requested durable rescheduling with its failure-attempt count reset.