class IO::Event::Timers

def after(offset, &block)

@parameter offset [Time] The time offset from the current time at which the block should be called.
Schedule a block to be called after a specific time offset, relative to the current time as returned by {#now}.
def after(offset, &block)
	schedule(self.now + offset, block)
end