ITaskT.cs 652 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace athosRT.Devices.EFEM.Task
  7. {
  8. public interface ITaskT
  9. {
  10. bool Execute(out string result, string cmd, params string[] args);
  11. bool? Monitor(out string result, params string[] args);
  12. bool HasInfoMessage { get; }
  13. bool IsAcked { get; }
  14. bool IsWaitAck { get; }
  15. bool Ack(EfemCommandType type, EfemCommand cmd, params string[] args);
  16. EfemCommandType CommandType { get; }
  17. EfemCommand CommandName { get; }
  18. string CommandData { get; set; }
  19. }
  20. }