20
|
1 using System.Collections.Concurrent;
|
|
2 using System.Threading;
|
|
3 using Christie_net.datagear;
|
|
4
|
|
5 namespace Christie_net.codegear {
|
|
6 public class CodeGearManager {
|
|
7 private ConcurrentDictionary<string, DataGearManager> dgmList = new ConcurrentDictionary<string, DataGearManager>();
|
|
8 private ConcurrentDictionary<int, CodeGearManager> cgmList = new ConcurrentDictionary<int, CodeGearManager>();
|
|
9 //private ThreadPool threadPoolExecutor;
|
|
10 private LocalDataGearManager localDgm = new LocalDataGearManager();
|
|
11 //private ConcurrentDictionary<string, >
|
|
12 public int cgmID;
|
|
13 //public
|
|
14 public int localPort;
|
|
15 }
|
|
16 } |