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.
37 lines
966 B
37 lines
966 B
1 month ago
|
using Autofac;
|
||
|
using DotNetty.Transport.Channels;
|
||
|
using HybirdFrameworkCore.Autofac;
|
||
|
using HybirdFrameworkCore.Autofac.Attribute;
|
||
|
using HybirdFrameworkCore.Configuration;
|
||
|
using log4net;
|
||
|
using Service.Charger.Client;
|
||
|
using Service.Charger.Msg.Charger.Req;
|
||
|
using Service.Charger.Msg.Host.Resp;
|
||
|
using Service.Plc.Msg.Host.Req;
|
||
|
using Service.Sound.SoundClient;
|
||
|
|
||
|
namespace Service.Charger.Handler;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 电池包拆卸完成 处理器
|
||
|
/// </summary>
|
||
|
[Order(8)]
|
||
|
[Scope("InstancePerDependency")]
|
||
|
public class WhetherChargedResqHandler : SimpleChannelInboundHandler<WhetherChargedResq>, IBaseHandler
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
private static readonly ILog Log = LogManager.GetLogger(typeof(WhetherChargedResqHandler));
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
protected override void ChannelRead0(IChannelHandlerContext ctx, WhetherChargedResq msg)
|
||
|
{
|
||
|
Log.Info("Sends the battery charge status");
|
||
|
|
||
|
}
|
||
|
}
|