Azavea.NijPredictivePolicing.ACSAlchemist.ImportJob.IsCancelled C# (CSharp) Method

IsCancelled() public method

public IsCancelled ( ) : bool
return bool
        public bool IsCancelled()
        {
            lock (this)
            {
                if (_cancelled && (_manager != null))
                {
                    _manager.Cancel();
                }

                return _cancelled;
            }
        }