using System.Collections.Concurrent; using Seyounth.Hyosung.Data.Models; namespace Seyounth.Hyosung.Runtime; public interface IHyosungRuntime { /// /// 启动运行 /// /// /// Task StartAsync(CancellationToken token); /// /// 停止运行 /// /// /// Task StopAsync(CancellationToken token); /// /// 发布品类信息到PLC /// /// /// Task SendVarietyToPlcAsync(Variety variety); }