Share via


JobStatistics.WaitTime Property

Definition

Gets or sets the total wait time of all Tasks in the Job.

[Newtonsoft.Json.JsonProperty(PropertyName="waitTime")]
public TimeSpan WaitTime { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="waitTime")>]
member this.WaitTime : TimeSpan with get, set
Public Property WaitTime As TimeSpan

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

The wait time for a Task is defined as the elapsed time between the creation of the Task and the start of Task execution. (If the Task is retried due to failures, the wait time is the time to the most recent Task execution.) This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.

Applies to