12345678910111213141516171819202122232425 |
- using Aitex.Core.Util;
- using athosRT.Devices.EFEM.ABS;
- using athosRT.Modules;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Devices.EFEM.Task
- {
- public class QueryErrorTask : CheckImp, ITask
- {
- public bool Execute(out string result, params string[] args) => this.Check<NoReadyPolicy>("System", out result);
- public bool? Monitor(out string result, params string[] args)
- {
- result = string.Empty;
- if (Singleton<RouteManager1>.Instance.IsError)
- result = "INTERNAL/UNDEFINITION";
- return new bool?(true);
- }
- }
- }
|