first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using JSMachine.WMS.RPC.RcsRPC.Dto.In;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JSMachine.WMS.Common.Cache
|
||||
{
|
||||
/// <summary>
|
||||
/// RCS 回调信息的进程内并发队列,供回调接收方与任务处理方之间暂存数据。
|
||||
/// </summary>
|
||||
public static class RcsCallbackCache
|
||||
{
|
||||
/// <summary>
|
||||
/// 待处理的 RCS AGV 执行信息队列。
|
||||
/// </summary>
|
||||
public static ConcurrentQueue<AgvExcutionInfo> RcsCallbackQueue = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user