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

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void
        public virtual void Dispose()
        {
            if (Interlocked.Increment(ref _disposeCount) == 1)
            {
                _shouldExitLock.Dispose();
            }
        }