mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-08 10:40:48 +08:00
实现了拖拽式设置方法调用顺序、方法入参参数来源
This commit is contained in:
28
Library/Enums/ConnectionArgSourceType.cs
Normal file
28
Library/Enums/ConnectionArgSourceType.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Serein.Library
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 节点对应方法的入参来源
|
||||
/// </summary>
|
||||
public enum ConnectionArgSourceType
|
||||
{
|
||||
/// <summary>
|
||||
/// (连接自身)从上一节点获取数据
|
||||
/// </summary>
|
||||
GetPreviousNodeData,
|
||||
/// <summary>
|
||||
/// 从指定节点获取数据
|
||||
/// </summary>
|
||||
GetOtherNodeData,
|
||||
/// <summary>
|
||||
/// 立刻执行某个节点获取其数据
|
||||
/// </summary>
|
||||
GetOtherNodeDataOfInvoke,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user