public IDisposable StartARepositoryLoad()
 {
     _progressUi.SetMessage("Loading entities from Outlook...");
     return(new ProgressLogger(_progressUi, 0, c_SingleStepTotal, 1, _exceptionLogger));
 }
Beispiel #2
0
 public IChunkProgressLogger StartChunk()
 {
     _progressUi.SetMessage($"Processing chunk #{++_currentChunk + 1}");
     return(new ChunkProgressLogger(_progressUi, _exceptionLogger));
 }