|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public class OutputQueue { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 堆垛机输出日志 | 
|---|
|  |  |  | public static ArrayBlockingQueue<String> CRN = new ArrayBlockingQueue<>(32); | 
|---|
|  |  |  | // 输送线输出日志 | 
|---|
|  |  |  | //四向穿梭车输出日志 | 
|---|
|  |  |  | public static ArrayBlockingQueue<String> SHUTTLE = new ArrayBlockingQueue<>(32); | 
|---|
|  |  |  | //提升机输出日志 | 
|---|
|  |  |  | public static ArrayBlockingQueue<String> LIFT = new ArrayBlockingQueue<>(32); | 
|---|
|  |  |  | //货叉提升机输出日志 | 
|---|
|  |  |  | public static ArrayBlockingQueue<String> FORKLIFT = 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); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|