view codegear/CodeGearManager.cs @ 20:3aaa77e12493

update
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 01 Dec 2020 20:23:09 +0900
parents
children 45ff08d59fda
line wrap: on
line source

using System.Collections.Concurrent;
using System.Threading;
using Christie_net.datagear;

namespace Christie_net.codegear {
public class CodeGearManager {
    private ConcurrentDictionary<string, DataGearManager> dgmList = new ConcurrentDictionary<string, DataGearManager>();
    private ConcurrentDictionary<int, CodeGearManager> cgmList = new ConcurrentDictionary<int, CodeGearManager>();
    //private ThreadPool threadPoolExecutor;
    private LocalDataGearManager localDgm = new LocalDataGearManager();
    //private ConcurrentDictionary<string, >
    public int cgmID;
    //public
    public int localPort;
}
}