class IO::Event::Timers

def schedule(time, block)

@parameter time [Float] The time at which the block should be called, relative to {#now}.
Schedule a block to be called at a specific time in the future.
def schedule(time, block)
	handle = Handle.new(time, block)
	
	@scheduled << handle
	
	return handle
end