Files
UnrealEngine/Engine/Source/Programs/Shared/EpicGames.Horde/Jobs/JobStepOutcome.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

31 lines
479 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Jobs
{
/// <summary>
/// Outcome for a jobstep
/// </summary>
public enum JobStepOutcome
{
/// <summary>
/// Outcome is not known
/// </summary>
Unspecified = 0,
/// <summary>
/// Step failed
/// </summary>
Failure = 1,
/// <summary>
/// Step completed with warnings
/// </summary>
Warnings = 2,
/// <summary>
/// Step succeeded
/// </summary>
Success = 3
}
}