1234567891011121314151617 |
- using Aitex.Core.RT.Routine;
- using Aitex.Sorter.Common;
- using MECF.Framework.Common.Equipment;
- namespace EFEM.RT.Routines
- {
- public interface IEfemPickRoutine : IRoutine
- {
- Result Start(params object[] objs);
- Result Monitor();
- bool Initalize();
- void Abort();
- ModuleName Source { get; set; }
- int Slot { get; set; }
- Hand Blade { get; set; }
- }
- }
|