|
|
|
@ -1,18 +1,22 @@
|
|
|
|
|
using DotNetty.Transport.Channels;
|
|
|
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
|
using log4net;
|
|
|
|
|
using Service.TBox.Msg.Host;
|
|
|
|
|
using Service.TBox.Msg.TBox;
|
|
|
|
|
using Service.TBox.Server;
|
|
|
|
|
|
|
|
|
|
namespace Service.TBox.Handler;
|
|
|
|
|
|
|
|
|
|
[Order(8)]
|
|
|
|
|
[Scope("InstancePerDependency")]
|
|
|
|
|
public class RestartMsgHandler : SimpleChannelInboundHandler<OtherMsg>, IBaseHandler
|
|
|
|
|
public class RestartMsgHandler : SimpleChannelInboundHandler<RestartMsg>, IBaseHandler
|
|
|
|
|
{
|
|
|
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(RestartMsgHandler));
|
|
|
|
|
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, OtherMsg msg)
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, RestartMsg msg)
|
|
|
|
|
{
|
|
|
|
|
Log.Info($"receive OtherMsg={msg}");
|
|
|
|
|
var server = TBoxServerMgr.Server;
|
|
|
|
|
if (server != null) server.RestartMsg = msg;
|
|
|
|
|
}
|
|
|
|
|
}
|