Files
serein-flow/Library.Core/NodeFlow/DynamicContext.cs

54 lines
1.6 KiB
C#
Raw Normal View History

using Serein.Library.Api;
using Serein.Library.Utils;
namespace Serein.Library.Core.NodeFlow
{
/// <summary>
/// 动态流程上下文
/// </summary>
public class DynamicContext: IDynamicContext
{
public DynamicContext(ISereinIOC sereinIoc, IFlowEnvironment flowEnvironment)
{
SereinIoc = sereinIoc;
FlowEnvironment = flowEnvironment;
}
public NodeRunCts NodeRunCts { get; set; }
public ISereinIOC SereinIoc { get; }
public IFlowEnvironment FlowEnvironment { get; }
public Task CreateTimingTask(Action action, int time = 100, int count = -1)
{
2024-09-22 17:37:32 +08:00
if (NodeRunCts == null)
{
2024-09-22 17:37:32 +08:00
NodeRunCts = SereinIoc.GetOrRegisterInstantiate<NodeRunCts>();
}
// 使用局部变量,避免捕获外部的 `action`
Action localAction = action;
return Task.Run(async () =>
{
for (int i = 0; i < count && !NodeRunCts.IsCancellationRequested; i++)
{
await Task.Delay(time);
2024-09-22 17:37:32 +08:00
if (NodeRunCts.IsCancellationRequested) { break; }
//if (FlowEnvironment.IsGlobalInterrupt)
//{
// await FlowEnvironment.GetOrCreateGlobalInterruptAsync();
//}
// 确保对局部变量的引用
localAction?.Invoke();
}
2024-09-22 17:37:32 +08:00
// 清理引用,避免闭包导致的内存泄漏
localAction = null;
});
}
}
}