view codegear/ThreadPoolExecutors.cs @ 26:45ff08d59fda

update CGM
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 12 Jan 2021 21:23:23 +0900
parents
children
line wrap: on
line source

using System.Threading;
using System.Threading.Tasks;

namespace Christie_net.codegear {
public class ThreadPoolExecutors {

    public ThreadPoolExecutors() {
        
    }
    
    public void CreateThreadPool() {
        
    }
    
    public void Execute(CodeGearExecutor command) {
        Task.Factory.StartNew(() => command.Run());
    }
}
}