Example #1
0
 internal ProgressListener_MultiPartProgressListener(Aggregator aggregator, string part, long totalCount)
 {
     this.Aggregator = aggregator;
     this.Part       = part;
     this.TotalCount = totalCount;
 }
Example #2
0
 internal MultiPartBuilder(ProgressMonitorFactory factory, string process)
 {
     this.Aggregator = new Aggregator(factory.NewIndicator(process));
 }