JobProgressRepr

Top  Previous  Next

Description

Represents the progress of a long-running job. This structure is found as a child of the JobStatusRepr structure.

 

XML Representation

 

<Progress>

  <Started>%date/time%</Started>

  <Count>%progress count%</Count>

  <Target>%progress target%</Target>

</Progress>

 

JSON Representation

 

Started: %date/time%,

Count: %progress count$

Target: %progress target%

 

 

Notes

The Started property is the date/time when the job processor recorded the first progress update from the worker. This timestamp is recorded in UTC.

The Count property is an integer value that indicates the current progress of the job as the job processing progresses, the value of this property should gradually increase. The Target property is an integer value that indicates the target value that the Count property will achieve when the processing is complete. With these two values, a "percent complete" value can be calculated as Count*100/Target.

See Also

JobStatusRepr