Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

31 lines
561 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Jobs
{
/// <summary>
/// Systemic error codes for a job step failing
/// </summary>
public enum JobStepError
{
/// <summary>
/// No systemic error
/// </summary>
None,
/// <summary>
/// Step did not complete in the required amount of time
/// </summary>
TimedOut,
/// <summary>
/// Step is in is paused state so was skipped
/// </summary>
Paused,
/// <summary>
/// Step did not complete because the batch exited
/// </summary>
Incomplete
}
}