mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-19 16:06:33 +08:00
对象预览器支持了值类型集合成员的简单预览
This commit is contained in:
@@ -4,10 +4,23 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Serein.Library.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// 流程上下文
|
||||
/// </summary>
|
||||
public interface IDynamicContext
|
||||
{
|
||||
IFlowEnvironment FlowEnvironment { get; }
|
||||
ISereinIOC SereinIoc { get; }
|
||||
Task CreateTimingTask(Action action, int time = 100, int count = -1);
|
||||
/// <summary>
|
||||
/// 运行环境
|
||||
/// </summary>
|
||||
IFlowEnvironment Env { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 定时循环触发
|
||||
/// </summary>
|
||||
/// <param name="callback"></param>
|
||||
/// <param name="time"></param>
|
||||
/// <param name="count"></param>
|
||||
/// <returns></returns>
|
||||
Task CreateTimingTask(Action callback, int time = 100, int count = -1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user