GeoEco.Logging.ProgressReporter.ReportProgress
- ProgressReporter.ReportProgress(operationsCompleted=1, reinitializeArcGISProgressor=False)
Signals the
ProgressReporterthat another one or more iterations just completed.This method will periodically report progress messages as described in the class-level documentation. You must call
Start()before calling this method.- Parameters:
operationsCompleted (
int, optional) – Total number of iterations that just completed, typically 1. You should provide the number of iterations that have completed since you last called this method. Do not pass in a cumulative total. Minimum value꞉ 1.reinitializeArcGISProgressor (
bool, optional) – If True and the ArcGIS progressor is being controlled by thisProgressReporterinstance, the ArcGIS progressor will be reinitialized as part of this call. Use this option to change control of the progressor back to the ProgressReporter instance after some built-in ArcGIS tool used the progressor for to report its own progress.