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.

29 lines
781 B

5 months ago
using DotNetty.Transport.Channels;
using HybirdFrameworkCore.Autofac.Attribute;
using log4net;
using Service.TBox.Msg.TBox;
using Service.TBox.Server;
5 months ago
namespace Service.TBox.Handler;
[Order(8)]
[Scope("InstancePerDependency")]
public class StatusMsgHandler : SimpleChannelInboundHandler<StatusMsg>, IBaseHandler
5 months ago
{
private static readonly ILog Log = LogManager.GetLogger(typeof(StatusMsgHandler));
protected override void ChannelRead0(IChannelHandlerContext ctx, StatusMsg msg)
5 months ago
{
Log.Info($"receive OtherMsg={msg}");
5 months ago
TBoxServerMgr.Server.StatusMsg = msg;
if (msg.Online == 1)
{
TBoxServerMgr.Server.Connected = true;
}
else
{
TBoxServerMgr.Server.Connected = false;
}
5 months ago
}
5 months ago
}