22 lines
559 B
Java
22 lines
559 B
Java
|
|
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;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* [类的简要说明]
|
|||
|
|
* <p>
|
|||
|
|
* [详细描述,可选]
|
|||
|
|
* <p>
|
|||
|
|
*
|
|||
|
|
* @author LiDongYU
|
|||
|
|
* @since 2025/7/22
|
|||
|
|
*/
|
|||
|
|
public class Global {
|
|||
|
|
public static BlockingQueue<RequestCmdInfo> receiveCmdInfoQueue = new LinkedBlockingQueue<>(10000);
|
|||
|
|
public static BlockingQueue<ResponseCmdInfo<?>> sendCmdInfoQueue = new LinkedBlockingQueue<>();
|
|||
|
|
|
|||
|
|
}
|