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 Newtonsoft.Json;
|
|
|
|
|
using Service.TBox.Msg.TBox;
|
|
|
|
|
|
|
|
|
|
namespace Service.TBox.Handler;
|
|
|
|
|
|
|
|
|
|
[Order(8)]
|
|
|
|
|
[Scope("InstancePerDependency")]
|
|
|
|
|
public class SocMsgHandler : SimpleChannelInboundHandler<SocMsg>, IBaseHandler
|
|
|
|
|
{
|
|
|
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(SocMsgHandler));
|
|
|
|
|
|
|
|
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, SocMsg msg)
|
|
|
|
|
{
|
|
|
|
|
Log.Info($"receive SocMsg={JsonConvert.SerializeObject(msg)}");
|
|
|
|
|
}
|
|
|
|
|
}
|