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.
|
|
|
|
using DotNetty.Transport.Channels;
|
|
|
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
|
using log4net;
|
|
|
|
|
using Service.Car.Msg.Car.Resp;
|
|
|
|
|
using Service.Car.Msg.Host.Req;
|
|
|
|
|
using Service.Car.Server;
|
|
|
|
|
|
|
|
|
|
namespace Service.Car.Handler;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Order(8)]
|
|
|
|
|
[Scope("InstancePerDependency")]
|
|
|
|
|
public class LockMsgRespHandler : SimpleChannelInboundHandler<LockMsgResp>, IBaseHandler
|
|
|
|
|
{
|
|
|
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(LockMsgRespHandler));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ctx"></param>
|
|
|
|
|
/// <param name="msg"></param>
|
|
|
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, LockMsgResp msg)
|
|
|
|
|
{
|
|
|
|
|
LockMsg? lockMsg = CarServerMgr.CarServer.LockMsgPair.Req;
|
|
|
|
|
|
|
|
|
|
Log.Info($"receive LockMsgResp = {msg}, lockMsg={lockMsg}");
|
|
|
|
|
if (lockMsg != null && lockMsg.CarNo == msg.CarNo)
|
|
|
|
|
{
|
|
|
|
|
CarServerMgr.CarServer.LockMsgPair.SetResp(msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|