class Async::Clock

def total

The total elapsed time including any current duration.
def total
	total = @total
	
	if @started
		total += (Clock.now - @started)
	end
	
	return total
end