Table of Contents

Enum JobStepStatus

Namespace
Cratis.Chronicle.Jobs
Assembly
Cratis.Chronicle.dll

Represents the status of a job step.

public enum JobStepStatus

Fields

CompletedSuccessfully = 3

The job step is completed successfully.

CompletedWithFailure = 4

The job step completed with failure.

Failed = 6

The job step failed internally.

Removing = 7

The job step is being removed.

Running = 2

The job step is running.

Scheduled = 1

The job step has been scheduled to start.

Stopped = 5

The job step has been stopped execution.

Unknown = 0

Represents an unset status.