mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-04-05 07:46:35 +08:00
优化了流程的进行
This commit is contained in:
31
Library/Enums/FlipflopStateType.cs
Normal file
31
Library/Enums/FlipflopStateType.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Serein.Library.Enums
|
||||
{
|
||||
|
||||
public enum FlipflopStateType
|
||||
{
|
||||
/// <summary>
|
||||
/// 成功(方法成功执行)
|
||||
/// </summary>
|
||||
Succeed,
|
||||
/// <summary>
|
||||
/// 失败(方法没有成功执行,不过执行时没有发生非预期的错误)
|
||||
/// </summary>
|
||||
Fail,
|
||||
/// <summary>
|
||||
/// 异常(节点没有成功执行,执行时发生非预期的错误)
|
||||
/// </summary>
|
||||
Error,
|
||||
/// <summary>
|
||||
/// 取消
|
||||
/// </summary>
|
||||
Cancel,
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user