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