package com.hivekion; import com.hivekion.common.entity.RequestCmdInfo; import com.hivekion.common.entity.ResponseCmdInfo; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; /** * [类的简要说明] *

* [详细描述,可选] *

* * @author LiDongYU * @since 2025/7/22 */ public class Global { public static BlockingQueue receiveCmdInfoQueue = new LinkedBlockingQueue<>(10000); public static BlockingQueue> sendCmdInfoQueue = new LinkedBlockingQueue<>(); }