| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | 
							- 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.PlatingCell
 
- {
 
-     public class PlatingCellInterRinseRoutine : RoutineBase, IRoutine
 
-     {
 
-         private enum RunRecipeStep
 
-         {
 
-             Delay,
 
-             End
 
-         }
 
-         /// <summary>
 
-         /// 构造函数
 
-         /// </summary>
 
-         /// <param name="module"></param>
 
-         public PlatingCellInterRinseRoutine(string module) : base(module)
 
-         {
 
-         }
 
-         /// <summary>
 
-         /// 中止
 
-         /// </summary>
 
-         public void Abort()
 
-         {
 
-             Runner.Stop("Manual Abort");
 
-         }
 
-         /// <summary>
 
-         /// 监控
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         public RState Monitor()
 
-         {
 
-             Runner.Delay(RunRecipeStep.Delay, 5000)
 
-                 .End(RunRecipeStep.End, NullFun);
 
-             return Runner.Status;
 
-         }
 
-         /// <summary>
 
-         /// 启动
 
-         /// </summary>
 
-         /// <param name="objs"></param>
 
-         /// <returns></returns>
 
-         public RState Start(params object[] objs)
 
-         {
 
-             return Runner.Start(Module, "start inter rinse");
 
-         }
 
-     }
 
- }
 
 
  |