class Async::Clock

def initialize(total = 0)

@parameter total [Numeric] The initial clock duration.
Create a new clock with the initial total time.
def initialize(total = 0)
	@total = total
	@started = nil
end