You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
414 B
C#
14 lines
414 B
C#
|
4 weeks ago
|
namespace Sln.Wcs.Strategy;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 任务执行策略接口 - 从任务队列中取出待执行任务,根据设备类型下发到对应 SDK
|
||
|
|
/// </summary>
|
||
|
|
public interface ITaskExecuteStrategy
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 执行一轮任务调度:查询待执行任务,按设备类型下发
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>本次下发的任务数量</returns>
|
||
|
|
Task<int> ExecuteAsync();
|
||
|
|
}
|