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.
40 lines
947 B
40 lines
947 B
using DotNetty.Transport.Channels;
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
using HybirdFrameworkCore.Utils;
|
|
using log4net;
|
|
using Newtonsoft.Json;
|
|
using Service.Charger.Client;
|
|
using Service.Charger.Msg.Charger.Req;
|
|
using Service.Charger.Msg.Charger.Resp;
|
|
|
|
|
|
namespace Service.Charger.Handler;
|
|
|
|
/// <summary>
|
|
/// 入库完成 处理器
|
|
/// </summary>
|
|
[Order(8)]
|
|
[Scope("InstancePerDependency")]
|
|
public class WarehousCompleteReqHandler : SimpleChannelInboundHandler<WarehousCompleteReq>, IBaseHandler
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
private static readonly ILog Log = LogManager.GetLogger(typeof(WarehousCompleteReqHandler));
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
protected override void ChannelRead0(IChannelHandlerContext ctx, WarehousCompleteReq msg)
|
|
{
|
|
Log.Info("Warehousing finish");
|
|
ctx.Channel.WriteAndFlushAsync(message: new Msg.Host.Resp.WarehousCompleteResq());
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|