# DurableJobRunStatus

Package: [Microsoft.Orleans.DurableJobs](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/) 10.0.0-alpha.1

[NuGet package](https://www.nuget.org/packages/Microsoft.Orleans.DurableJobs)

```csharp
public enum DurableJobRunStatus
```

Represents the status of a durable job execution.

## Fields

- `Completed` = `0` - The job completed successfully and should be removed from the queue.
- `PollAfter` = `1` - The job is still running and should be polled again after the specified delay.
- `Failed` = `2` - The job failed and should be processed through the retry policy.
