Files
serein-flow/Library/Enums/FlipflopStateType.cs

34 lines
789 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library
{
2024-10-11 19:31:34 +08:00
/// <summary>
/// 触发器状态
2024-10-11 19:31:34 +08:00
/// </summary>
2024-09-15 22:07:10 +08:00
public enum FlipflopStateType
{
/// <summary>
/// 成功(方法成功执行)
/// </summary>
Succeed,
/// <summary>
/// 失败(方法没有成功执行,不过执行时没有发生非预期的错误)
/// </summary>
Fail,
/// <summary>
/// 异常(节点没有成功执行,执行时发生非预期的错误)
/// </summary>
Error,
2024-09-15 22:07:10 +08:00
/// <summary>
2024-10-11 19:31:34 +08:00
/// 取消(将不会执行触发器的后继节点)
2024-09-15 22:07:10 +08:00
/// </summary>
Cancel,
}
2024-09-15 22:07:10 +08:00
}