class IO::Event::Debug::Selector
def push(fiber)
Push the given fiber to the selector ready list, such that it will be resumed on the next call to {select}.
def push(fiber) log("Pushing fiber #{fiber.inspect} to ready list") @selector.push(fiber) end