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
449 B
C#
14 lines
449 B
C#
namespace Sln.Wcs.Strategy;
|
|
|
|
/// <summary>
|
|
/// 任务执行调度策略 - 按任务类别(包材/托盘/成品)并行调度,
|
|
/// AGV 阶段并发下发(多车),提升机阶段按设备串行下发
|
|
/// </summary>
|
|
public interface ITaskExecuteStrategy
|
|
{
|
|
/// <summary>
|
|
/// 启动任务调度,持续运行直到 cancellationToken 被取消
|
|
/// </summary>
|
|
Task ExecuteAsync(CancellationToken cancellationToken = default);
|
|
}
|