IEfemPickRoutine.cs 412 B

1234567891011121314151617
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Sorter.Common;
  3. using MECF.Framework.Common.Equipment;
  4. namespace EFEM.RT.Routines
  5. {
  6. public interface IEfemPickRoutine : IRoutine
  7. {
  8. Result Start(params object[] objs);
  9. Result Monitor();
  10. bool Initalize();
  11. void Abort();
  12. ModuleName Source { get; set; }
  13. int Slot { get; set; }
  14. Hand Blade { get; set; }
  15. }
  16. }