Files
serein-flow/Library/Api/IDynamicContext.cs

14 lines
318 B
C#
Raw Normal View History

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);
}
}