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.

47 lines
1.2 KiB

using Autofac;
5 months ago
using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac;
5 months ago
using HybirdFrameworkCore.Autofac.Attribute;
using HybirdFrameworkCore.Configuration;
5 months ago
using HybirdFrameworkCore.Utils;
using log4net;
using Newtonsoft.Json;
5 months ago
using Service.Charger.Client;
5 months ago
using Service.Charger.Msg.Charger.Req;
using Service.Charger.Msg.Charger.Resp;
using Service.Sound.SoundClient;
5 months ago
namespace Service.Charger.Handler;
/// <summary>
/// 开始换电命令回复 处理器
/// </summary>
[Order(8)]
[Scope("InstancePerDependency")]
public class StartBatterySwapResqHandler : SimpleChannelInboundHandler<StartBatterySwapResq>, IBaseHandler
{
/// <summary>
///
/// </summary>
5 months ago
private static readonly ILog Log = LogManager.GetLogger(typeof(StartBatterySwapResqHandler));
5 months ago
public static SoundClient? SoundClient { get; set; }
5 months ago
/// <summary>
///
/// </summary>
protected override void ChannelRead0(IChannelHandlerContext ctx, StartBatterySwapResq msg)
5 months ago
{
Log.Info($"receive msg={msg}");
//开始换电语音播报
if (msg.AnswerResult == 0)
{
ClientMgr.PlcClient.SwapStart = true;
}
}
5 months ago
}