Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

29 righe
1012 B

  1. // ********************************************************************************
  2. // 文件名字: S1F2Handler
  3. // 文件描述: S1F2Handler
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 S1F2Handler.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using ARI.EAP.HOST;
  11. using ARI.EAP.HOST.Common;
  12. using Glorysoft.SECS.EQP.Common;
  13. using Glorysoft.SECS.EQP.Message;
  14. using Glorysoft.SECS.EQP.Utilities;
  15. using Glorysoft.SECSwell;
  16. using System.Threading;
  17. namespace Glorysoft.SECS.EQP.Handlers
  18. {
  19. public class S1F2Handler : ISECSMessageHandler
  20. {
  21. public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
  22. {
  23. EquipmentStatus.S1F1HeartBit.timer2.Stop();
  24. Global.MF.addlog(trans, LoggerService.Receive, trans.Secondary.Description, 1);
  25. LoggerService.SECSLogger.Info(trans.Secondary);
  26. }
  27. }
  28. }