Chinchilla.WorkerPoolWorkersController.Resume C# (CSharp) Method

Resume() public method

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

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