timeoutRate property
double
get
timeoutRate
Timeout rate (0.0 to 1.0)
Implementation
double get timeoutRate {
if (totalStarted == 0) return 0.0;
return totalTimedOut / totalStarted;
}
Timeout rate (0.0 to 1.0)
double get timeoutRate {
if (totalStarted == 0) return 0.0;
return totalTimedOut / totalStarted;
}