Class DistributedJobSettings
Settings for distributed jobs.
Inheritance
object
Namespace: Umbraco.Cms.Core.Configuration.Models
Assembly: Umbraco.Core.dll
Syntax
[UmbracoOptions("Umbraco:CMS:DistributedJobs")]
public class DistributedJobSettings
Properties
View SourceDelay
Gets or sets a value for the delay of when to start checking for distributed jobs.
Declaration
public TimeSpan Delay { get; set; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |
MaximumExecutionTime
Gets or sets the maximum execution time for a distributed job before it is considered timed out. When a job exceeds this time, it is considered stale and can be picked up by another server for recovery and restarted.
Declaration
public TimeSpan MaximumExecutionTime { get; set; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |
Period
Gets or sets a value for the period of checking if there are any runnable distributed jobs.
Declaration
public TimeSpan Period { get; set; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |