Class PipelineComponentStatus
Describes the current status of a single pipeline component.
public class PipelineComponentStatus
- Inheritance
-
PipelineComponentStatus
- Inherited Members
Constructors
PipelineComponentStatus(string, PipelineExecutionStatus, PipelineComponentFlowStatus?)
Initializes a new component status snapshot.
public PipelineComponentStatus(string name, PipelineExecutionStatus status, PipelineComponentFlowStatus? flow = null)
Parameters
namestringThe logical component name.
statusPipelineExecutionStatusThe component execution status.
flowPipelineComponentFlowStatusOptional flow-control information for the component.
Properties
Flow
Gets the current flow-control information for the component, if available.
public PipelineComponentFlowStatus? Flow { get; }
Property Value
Name
Gets the component name.
public string Name { get; }
Property Value
Status
Gets the current execution status of the component.
public PipelineExecutionStatus Status { get; }