class IO::Event::Debug::Selector

def push(fiber)

@parameter fiber [Fiber] The fiber that is ready.

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