12345678910111213141516171819202122232425262728 |
- using Aitex.Core.RT.Routine;
- using Aitex.Sorter.Common;
- using athosRT.FSM;
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Modules.EFEMs.Routine
- {
- public interface IEfemPlaceRoutine : FSM.IRoutine
- {
- new RState Start(params object[] objs);
- new RState Monitor();
- new void Abort();
- ModuleName Station { get; set; }
- int Slot { get; set; }
- Hand Blade { get; set; }
- }
- }
|