20 lines
467 B
C#
20 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Channels;
|
|
using System.Threading.Tasks;
|
|
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
|
|
|
|
namespace Tnb.WarehouseMgr.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 任务消息通知接口
|
|
/// </summary>
|
|
public interface ITaskMessageNotify
|
|
{
|
|
ChannelReader<NotifyMessage> Reader { get; }
|
|
ChannelWriter<NotifyMessage> Writer { get; }
|
|
}
|
|
}
|