Chinchilla.WorkerPoolWorker.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            if (Status != WorkerStatus.Stopped)
            {
                throw new InvalidOperationException(
                    "Cannot start this worker because it has already been started");
            }

            Status = WorkerStatus.Starting;
            thread.Start();
        }