Cornerstone.Tools.BackgroundProcessManager.BackgroundProcessManager C# (CSharp) Méthode

BackgroundProcessManager() public méthode

public BackgroundProcessManager ( ) : System
Résultat System
        public BackgroundProcessManager()
        {
            activeProcesses = new HashSet<AbstractBackgroundProcess>();
            threadLookup = new Dictionary<AbstractBackgroundProcess, Thread>();

            progressDelegate = new ProcessProgressDelegate(OnProgress);
            statusChangedDelegate = new ProcessStatusChangedDelegate(OnStatusChanged);
        }