自动化立体仓库 - WCS系统
#
Junjie
8 天以前 3009c8b166815ef1ca58d43643e6d1f9f3a57747
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.core.cache;
 
import com.alibaba.fastjson.JSONObject;
 
import java.util.concurrent.ArrayBlockingQueue;
 
/**
 * Created by vincent on 2020/8/17
 */
public class OutputQueue {
 
    //四向穿梭车输出日志
    public static ArrayBlockingQueue<String> SHUTTLE = new ArrayBlockingQueue<>(32);
    //提升机输出日志
    public static ArrayBlockingQueue<String> LIFT = new ArrayBlockingQueue<>(32);
    //货叉提升机输出日志
    public static ArrayBlockingQueue<String> FORKLIFT = new ArrayBlockingQueue<>(32);
 
}