class Async::Clock

def total

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