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
912 B

using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac.Attribute;
using Service.Car.Msg.Car.Req;
using Service.Car.Msg.Host.Resp;
using Service.Car.Server;
namespace Service.Car.Handler;
/// <summary>
///
/// </summary>
[Order(8)]
[Scope("InstancePerDependency")]
public class ElecMsgHandler : SimpleChannelInboundHandler<ElecMsg>, IBaseHandler
{
/// <summary>
///
/// </summary>
/// <param name="ctx"></param>
/// <param name="msg"></param>
/// <exception cref="NotImplementedException"></exception>
protected override void ChannelRead0(IChannelHandlerContext ctx, ElecMsg msg)
{
CarServerMgr.CarServer.Connected = true;
CarServerMgr.CarServer.ElecMsg = msg;
ElecMsgResp resp = new ElecMsgResp( 0)
{
CarNo = msg.CarNo
};
resp.InitCurrentTime();
ctx.Channel.WriteAndFlushAsync(resp);
}
}