package project.data; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class AdjustmentValueCache { /** * 当前值 */ private static volatile Map currentValue = new ConcurrentHashMap(); /** * 延时值 */ private static volatile Map delayValue = new ConcurrentHashMap(); public static Map getCurrentValue() { return currentValue; } public static Map getDelayValue() { return delayValue; } }