throughput property

double get throughput

Implementation

double get throughput {
  if (startTime == null) return 0.0;
  final uptimeSeconds = uptime.inSeconds;
  if (uptimeSeconds == 0) return 0.0;
  return jobsProcessed / uptimeSeconds;
}