using Aitex.Core.RT.Routine; using MECF.Framework.Common.Routine; using PunkHPX8_Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PunkHPX8_RT.Modules.VpwCell { public class VpwManualRecipeRoutine : RoutineBase, IRoutine { /// /// 构造函数 /// /// public VpwManualRecipeRoutine(string module) : base(module) { } /// /// 中止 /// public void Abort() { Runner.Stop("Manual stop"); } /// /// 监控 /// /// public RState Monitor() { return Runner.Status; } /// /// 启动 /// /// /// public RState Start(params object[] objs) { return Runner.Start(Module, "start run recipe"); } } }