Helius
2021-05-13 f8c1d9838e3c337d0dc9f406fb1b2b54e2be06b5
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>();
}