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 InboundCommandsResqHandler : SimpleChannelInboundHandler, IBaseHandler { /// /// /// private static readonly ILog Log = LogManager.GetLogger(typeof(InboundCommandsResqHandler)); /// /// /// protected override void ChannelRead0(IChannelHandlerContext ctx, InboundCommandsResq msg) { Log.Info("swap finish"); } }