class Async::Clock

def stop!

def stop!
	if @started
		@total += (Clock.now - @started)
		@started = nil
	end
	
	return @total
end