Chinchilla.WorkerPoolWorkersController.Resume C# (CSharp) Méthode

Resume() public méthode

public Resume ( string workerName ) : void
workerName string
Résultat void
        public void Resume(string workerName)
        {
            logger.InfoFormat("Trying to resume worker: {0}", workerName);

            var worker = FindWorkerByName(workerName);
            worker.Resume();
        }