Table of Contents

Class PipelineComponentStatus

Namespace
Pipelinez.Core.Status
Assembly
Pipelinez.dll

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

name string

The logical component name.

status PipelineExecutionStatus

The component execution status.

flow PipelineComponentFlowStatus

Optional 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

PipelineComponentFlowStatus

Name

Gets the component name.

public string Name { get; }

Property Value

string

Status

Gets the current execution status of the component.

public PipelineExecutionStatus Status { get; }

Property Value

PipelineExecutionStatus