throughput property
double
get
throughput
Throughput (jobs per second)
Implementation
double get throughput {
if (startTime == null) return 0.0;
final uptimeSeconds = uptime.inSeconds;
if (uptimeSeconds == 0) return 0.0;
return totalCompleted / uptimeSeconds;
}