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

UpdateProgress() public method

Event added so we can provide some basic feedback while this is running in a background thread
public UpdateProgress ( int value ) : void
value int
return void
        public void UpdateProgress(int value)
        {
            if (this.OnProgressUpdated != null)
            {
                if (IsCancelled()) { value = 100; }

                this.OnProgressUpdated(value);
            }
        }