You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
915 B

5 months ago
using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac.Attribute;
using log4net;
5 months ago
using Service.Charger.Client;
5 months ago
using Service.Charger.Msg.Charger.Req;
5 months ago
using Service.Charger.Msg.Host.Resp;
5 months ago
namespace Service.Charger.Handler;
/// <summary>
/// 电池包拆卸完成 处理器
/// </summary>
[Order(8)]
[Scope("InstancePerDependency")]
public class BatteryPackDisassembledReqHandler : SimpleChannelInboundHandler<BatteryPackDisassembledReq>, IBaseHandler
{
/// <summary>
///
/// </summary>
5 months ago
private static readonly ILog Log = LogManager.GetLogger(typeof(BatteryPackDisassembledReqHandler));
5 months ago
/// <summary>
///
/// </summary>
protected override void ChannelRead0(IChannelHandlerContext ctx, BatteryPackDisassembledReq msg)
{
5 months ago
ClientMgr.PlcClient.DisassembleDone = true;
ctx.Channel.WriteAndFlushAsync(new BatteryPackDisassembledResq());
5 months ago
}
}