WorkchkTask.cs 487 B

1234567891011121314151617181920212223
  1. using Aitex.Sorter.RT.EFEMs.Servers;
  2. namespace Aitex.Sorter.RT.EFEMs.Tasks
  3. {
  4. class SetWorkchkTask : CheckImp, ITask
  5. {
  6. public SetWorkchkTask()
  7. {
  8. }
  9. public bool Execute(out string result, params string[] args)
  10. {
  11. result = "NOFUNC";
  12. return false;
  13. }
  14. public bool? Monitor(out string result, params string[] args)
  15. {
  16. result = string.Empty;
  17. return true;
  18. }
  19. }
  20. }