DotNetWorkQueue.Queue.WorkerBase.WorkerBase C# (CSharp) Method

WorkerBase() protected method

Initializes a new instance of the WorkerBase class.
protected WorkerBase ( WorkerTerminate workerTerminate ) : System
workerTerminate WorkerTerminate The worker terminate.
return System
        protected WorkerBase(WorkerTerminate workerTerminate)
        {
            Guard.NotNull(() => workerTerminate, workerTerminate);
            _workerTerminate = workerTerminate;
            _shouldExitLock = new ReaderWriterLockSlim();
        }
        /// <summary>