Files
UnrealEngine/Engine/Source/Programs/Shared/EpicGames.Horde/Jobs/JobStepError.cs
2025-05-18 13:04:45 +08: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
}
}