Helius
2021-03-31 39dc7fb413e4e91e424014f8a86812e637a5dd37
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xcong.excoin.rabbit.pricequeue.whole;
 
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
 
/**
 * @author wzy
 * @date 2021-01-27
 **/
public class WholeDataQueue {
 
    public static Map<String, WholePriceDataModel> MAP = new ConcurrentHashMap<String, WholePriceDataModel>();
}