# DurableJobRunResult.InProgress(TimeSpan)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.durablejobrunresult/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.durablejobs.durablejobrunresult/methods/)

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.DurableJobs/DurableJobRunResult.cs#L85-L86)

```csharp
public static DurableJobRunResult InProgress(TimeSpan delay)
```

Creates a result indicating the job execution remains in progress and should be polled after the specified delay.

### Parameters

- `delay` (`TimeSpan`): The time to wait before polling the run again.

### Returns

An in-progress job result.
