mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
15 lines
368 B
C#
15 lines
368 B
C#
using Serein.Library.Utils;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Library.Api
|
|
{
|
|
public interface IDynamicContext
|
|
{
|
|
IFlowEnvironment FlowEnvironment { get; }
|
|
ISereinIOC SereinIoc { get; }
|
|
NodeRunCts NodeRunCts { get; set; }
|
|
Task CreateTimingTask(Action action, int time = 100, int count = -1);
|
|
}
|
|
}
|