29 lines
904 B
Java
29 lines
904 B
Java
package com.hivekion;
|
|
|
|
import com.hivekion.common.entity.RequestCmdInfo;
|
|
import com.hivekion.common.entity.ResponseCmdInfo;
|
|
import com.hivekion.scenario.bean.ScenarioWsParam;
|
|
import com.hivekion.scenario.entity.RoomLog;
|
|
import java.util.Map;
|
|
import java.util.concurrent.BlockingQueue;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
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<>();
|
|
public static Map<String, ScenarioWsParam> roomParamMap = new ConcurrentHashMap<>();
|
|
public static BlockingQueue<RoomLog> roomLogQueue = new LinkedBlockingQueue<>(1000);
|
|
}
|