class Async::Container::Group

def yield

def yield
	if @queue
		fiber = Fiber.current
		
		@queue << fiber
		Fiber.yield
	end
end