QueryTransferTask.cs 534 B

123456789101112131415161718192021
  1. using athosRT.Devices.EFEM.ABS;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace athosRT.Devices.EFEM.Task
  8. {
  9. public class QueryTransferTask : CheckImp, ITask
  10. {
  11. public bool Execute(out string result, params string[] args) => this.Check<NoReadyPolicy>("System", out result);
  12. public bool? Monitor(out string result, params string[] args)
  13. {
  14. result = "LOAD";
  15. return new bool?(true);
  16. }
  17. }
  18. }