dc/Handlers/HSMSDisconnectedHandler.cs

29 lines
953 B
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
// ********************************************************************************
// 文件名字: HSMSDisconnectedHandler
// 文件描述: HSMSDisconnectedHandler
// 开发人员: Michael
// 创建时间: 2019/11/8 0:08
//
// 更新历史:
// + 创建 HSMSDisconnectedHandler.cs 文件. by Michael @2019/11/8 0:08
// ********************************************************************************
using ARI.EAP.HOST;
using ARI.EAP.HOST.MQ;
using ARI.EAP.HOST.MQ.body;
using ARI.EAP.HOST.SRD;
using Glorysoft.SECS.EQP.Common;
using Glorysoft.SECSwell;
using System;
using System.Threading.Tasks;
namespace Glorysoft.SECS.EQP.Handlers
{
public class HSMSDisconnectedHandler : ISECSMessageHandler
{
public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
{
SimulatorInfo.Instance.IsConnected = false;
Global.MF.ConnectStatusSet(false);
}
}
}