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