增加流程运行特性:支持异步节点

This commit is contained in:
fengjiayi
2024-10-07 22:52:10 +08:00
parent 878b1c5893
commit 9529b9e19d
13 changed files with 190 additions and 96 deletions

View File

@@ -9,15 +9,15 @@ namespace Serein.Library.Enums
public enum NodeType
{
/// <summary>
/// 初始化(事件,不生成节点)
/// 初始化,流程启动时执行(不生成节点)
/// </summary>
Init,
/// <summary>
/// 开始载入(事件,不生成节点)
/// 开始载入,流程启动时执行(不生成节点)
/// </summary>
Loading,
/// <summary>
/// 结束(事件,不生成节点)
/// 结束,流程结束时执行(不生成节点)
/// </summary>
Exit,