1234567891011121314151617181920212223 |
- using athosRT.Devices.EFEM.Task;
- using athosRT.tool;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Devices.EFEM.ABS
- {
- public class CMPLPolicy : CheckImp, IPolicy
- {
- public bool Check(string device, out string reason)
- {
- reason = string.Empty;
- if (this.GetEntity(device).Busy)
- return true;
- reason = $"CMPL:{device} not busy.";
- return false;
- }
- }
- }
|