using DotNetty.Transport.Channels; using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkCore.Utils; using log4net; using Newtonsoft.Json; using Service.Charger.Client; using Service.Charger.Msg.Charger.Req; using Service.Charger.Msg.Charger.Resp; namespace Service.Charger.Handler; /// /// 移库命令回复 处理器 /// [Order(8)] [Scope("InstancePerDependency")] public class MoveCommandResqHandler : SimpleChannelInboundHandler, IBaseHandler { /// /// /// private static readonly ILog Log = LogManager.GetLogger(typeof(MoveCommandResqHandler)); /// /// /// protected override void ChannelRead0(IChannelHandlerContext ctx, MoveCommandResq msg) { Log.Info("swap finish"); ClientMgr.PlcClient.SwapDone = true; } }