class IO::Event::Timers
def schedule(time, block)
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
def schedule(time, block) handle = Handle.new(time, block) @scheduled << handle return handle end