22 lines
622 B
C#
22 lines
622 B
C#
namespace Butter.Types;
|
|
|
|
/// <summary>
|
|
/// Defines the possible states of a job in the system.
|
|
/// </summary>
|
|
public enum EJobStatus {
|
|
/// <summary>Not yet started.</summary>
|
|
Queued,
|
|
/// <summary>Actively executing.</summary>
|
|
Running,
|
|
/// <summary>Waiting for sub-jobs or paused.</summary>
|
|
Waiting,
|
|
/// <summary>Successfully finished.</summary>
|
|
Completed,
|
|
/// <summary>Finished, but some sub-jobs or steps had errors.</summary>
|
|
CompletedWithErrors,
|
|
/// <summary>Finished with an error.</summary>
|
|
Failed,
|
|
/// <summary>Canceled by user or system.</summary>
|
|
Canceled
|
|
}
|