ProgressDto Class

Provides information to the user about the progress of an action flow; the items it has completed, is in the process of completing or has failed to complete.

Definition

Namespace: MobileTrack.Common.Models.ActionFlows.Execution
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public sealed class ProgressDto
Inheritance
Object    ProgressDto

Remarks

Nodes that are yet to be completed are not included, as some nodes are only executed conditionally based on what other nodes return.

Constructors

ProgressDtoInitializes a new instance of the ProgressDto class

Properties

ActionFlowId The ID of the ActionFlowDefinitionDto that is currently running.
ExecutionId The ID of the execution of the action flow.
NodesCompleted Nodes that are currently completed.
NodesFailed Only filled in if State is Failed.
NodesInProgress Nodes that are currently in progress.
State State the action flow is in.
When When the progress was last updated.

See Also