mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-12 04:29:25 +08:00
移除了中断相关的后台代码与UI交互(待重写);重写运行时节点获取参数的方法;重写了节点容器的互动;完善了WebSocket远程交互;完善了项目文件的加载;
This commit is contained in:
@@ -188,6 +188,27 @@ namespace Serein.NodeFlow.Env
|
||||
{
|
||||
_ = remoteFlowEnvironment.InvokeTriggerAsync(msgId, state);
|
||||
}
|
||||
/// <summary>
|
||||
/// 放置节点
|
||||
/// </summary>
|
||||
/// <param name="msgId"></param>
|
||||
/// <param name="state"></param>
|
||||
[AutoSocketHandle(ThemeValue = EnvMsgTheme.PlaceNode, IsReturnValue = false)]
|
||||
public void PlaceNode([UseMsgId] string msgId, bool state)
|
||||
{
|
||||
_ = remoteFlowEnvironment.InvokeTriggerAsync(msgId, state);
|
||||
}
|
||||
/// <summary>
|
||||
/// 取出节点
|
||||
/// </summary>
|
||||
/// <param name="msgId"></param>
|
||||
/// <param name="state"></param>
|
||||
[AutoSocketHandle(ThemeValue = EnvMsgTheme.TakeOutNode, IsReturnValue = false)]
|
||||
public void TakeOutNode([UseMsgId] string msgId, bool state)
|
||||
{
|
||||
_ = remoteFlowEnvironment.InvokeTriggerAsync(msgId, state);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建节点之间的调用关系
|
||||
|
||||
Reference in New Issue
Block a user