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