自动化立体仓库 - WCS系统
Junjie
2023-03-24 a2c563572181cf54946020db619b6867f11f088a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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> CRN = new ArrayBlockingQueue<>(32);
    // 输送线输出日志
    public static ArrayBlockingQueue<String> DEVP = new ArrayBlockingQueue<>(32);
    // 条码器输出日志
    public static ArrayBlockingQueue<JSONObject> BARCODE = new ArrayBlockingQueue<>(32);
    // 穿梭车输出日志
    public static ArrayBlockingQueue<String> STE = new ArrayBlockingQueue<>(32);
    //四向穿梭车输出日志
    public static ArrayBlockingQueue<String> SHUTTLE = new ArrayBlockingQueue<>(32);
 
}