class IO::Event::Timers::Handle

def initialize(time, block)

@parameter block [Proc] The block to call.
@parameter time [Float] The time at which the block should be called.

Initialize the handle with the given time and block.
def initialize(time, block)
	@time = time
	@block = block
end