|
|
|
@ -26,7 +26,7 @@ public class ElecMsgHandler : SimpleChannelInboundHandler<ElecMsg>, IBaseHandler
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, ElecMsg msg)
|
|
|
|
|
{
|
|
|
|
|
Log.Info($"receive ElecMsg = {JsonConvert.SerializeObject(msg)}");
|
|
|
|
|
IoSession? ioSession = SessionMgr.GetSession(msg.CarNo);
|
|
|
|
|
IoSession? ioSession = CarServerMgr.CarServer?.SessionMgr.GetSession(msg.CarNo);
|
|
|
|
|
|
|
|
|
|
ioSession?.BusinessMap.AddOrUpdate("ElecMsg", msg, ((s, o) => msg));
|
|
|
|
|
ioSession?.BusinessMap.AddOrUpdate("Connected", true, ((s, o) => true));
|
|
|
|
|