if adjustment is None:
adjustment = Adjustment(known=1.0, unknown=1.0)
if output_speed == 0 and input_speed == 0:
// The consumer has finished
eta = 0.0
self.log_calculate_eta(eta, input_speed, output_speed, queue_size,
_type, adjustment, average)
return eta
if output_speed == 0 and input_speed != 0:
// The output speed is zero, this is a very strange case... it will
// be impossible to calculate the ETA, just remove "I"ll be there
// in 5 minutes" (just like the pizza delivery when you call them
// because you"re hungry)
//
// The next time the code calls calculate_eta() the output_speed
// will (most likely) be different from zero and it will be possible
// to calculate a real ETA
eta = 5 * 60.0
self.log_calculate_eta(eta, input_speed, output_speed, queue_size,
_type, adjustment, average)