dc/Handlers/S2F24Handler.cs

36 lines
1.1 KiB
C#
Raw Permalink Normal View History

2022-04-01 17:03:54 +08:00
// ********************************************************************************
// 文件名字: S1F14Handler
// 文件描述: S1F14Handler
// 开发人员: Michael
// 创建时间: 2019/11/8 0:08
//
// 更新历史:
// + 创建 S1F14Handler.cs 文件. by Michael @2019/11/8 0:08
// ********************************************************************************
using Glorysoft.SECS.EQP.Common;
using Glorysoft.SECS.EQP.Message;
using Glorysoft.SECS.EQP.Utilities;
using Glorysoft.SECSwell;
using System.Linq;
using System.Threading;
using System;
using ARI.EAP.HOST;
namespace Glorysoft.SECS.EQP.Handlers
{
public class S2F24Handler : ISECSMessageHandler
{
public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
{
2023-02-23 11:33:23 +08:00
Global.MF.addlog(trans, LoggerService.Receive, "Trace Data Start", 1);
2022-04-01 17:03:54 +08:00
LoggerService.SECSLogger.Info(trans.Secondary);
if (trans.Tag != null)
{
var scenario = trans.Tag as Scenario;
Thread.Sleep(500);
scenario.ExecuteNextStep();
}
}
}
}