dc/Handlers/S1F2Handler.cs
13118993771@163.com eb23e102b4 大更新
2022-12-16 13:01:24 +08:00

29 lines
1012 B
C#

// ********************************************************************************
// 文件名字: S1F2Handler
// 文件描述: S1F2Handler
// 开发人员: Michael
// 创建时间: 2019/11/8 0:08
//
// 更新历史:
// + 创建 S1F2Handler.cs 文件. by Michael @2019/11/8 0:08
// ********************************************************************************
using ARI.EAP.HOST;
using ARI.EAP.HOST.Common;
using Glorysoft.SECS.EQP.Common;
using Glorysoft.SECS.EQP.Message;
using Glorysoft.SECS.EQP.Utilities;
using Glorysoft.SECSwell;
using System.Threading;
namespace Glorysoft.SECS.EQP.Handlers
{
public class S1F2Handler : ISECSMessageHandler
{
public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
{
EquipmentStatus.S1F1HeartBit.timer2.Stop();
Global.MF.addlog(trans, LoggerService.Receive, trans.Secondary.Description, 1);
LoggerService.SECSLogger.Info(trans.Secondary);
}
}
}