class Async::Clock

def stop!

Stop measuring a duration and append the duration to the current total.
def stop!
	if @started
		@total += (Clock.now - @started)
		@started = nil
	end
	
	return @total
end