ProcessPoolProgressReporter typedef

ProcessPoolProgressReporter = void Function(int totalJobs, int completed, int inProgress, int pending, int failed)

The type of the reporting function for ProcessPool.printReport.

Implementation

typedef ProcessPoolProgressReporter = void Function(
  int totalJobs,
  int completed,
  int inProgress,
  int pending,
  int failed,
);