using Serein.Library.Utils; using System; using System.Threading.Tasks; namespace Serein.Library.Api { /// /// 流程上下文 /// public interface IDynamicContext { /// /// 运行环境 /// IFlowEnvironment Env { get; } /// /// 定时循环触发 /// /// /// /// /// // Task CreateTimingTask(Action callback, int time = 100, int count = -1); } }