Table of Contents

Class JobProgress

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

Represents progress of a job.

public class JobProgress
Inheritance
JobProgress
Inherited Members

Properties

FailedSteps

Gets or sets the failed number of steps.

public int FailedSteps { get; init; }

Property Value

int

IsCompleted

Gets whether or not the job is completed.

public bool IsCompleted { get; init; }

Property Value

bool

IsStopped

Gets whether the job is completed where it also can have stopped steps.

public bool IsStopped { get; init; }

Property Value

bool

Message

Gets or sets the current message associated with the progress.

public JobProgressMessage Message { get; init; }

Property Value

JobProgressMessage

StoppedSteps

Gets or sets the number of stopped steps.

public int StoppedSteps { get; set; }

Property Value

int

SuccessfulSteps

Gets or sets the completed number of steps.

public int SuccessfulSteps { get; init; }

Property Value

int

TotalSteps

Gets or sets the total number of steps.

public int TotalSteps { get; init; }

Property Value

int