using System.Collections.Concurrent;
using GpsModels;
namespace GPSServer.Helper
{
public class MApplication
{
///
/// 待处理到RealTime的数据-列队线程安全的列队字典
///
public static ConcurrentDictionary> ConcurrentQueues = new ConcurrentDictionary>();
///
/// 待持久化gps数据的列队字典(car)
///
public static ConcurrentDictionary> CarConcurrentQueues = new ConcurrentDictionary>();
}
}