DotNetWorkQueue.Queue.WorkerHeartBeatNotification.SetError C# (CSharp) Method

SetError() public method

Sets the error.
public SetError ( Exception error ) : void
error System.Exception The error.
return void
        public void SetError(Exception error)
        {
            lock (_locker)
            {
                _error = error;
            }
            Interlocked.Increment(ref _errorCount);
        }
        /// <summary>
WorkerHeartBeatNotification