class Async::Container::Group

def interrupt

This resumes the controlling fiber with an instance of {Interrupt}.
Interrupt all running processes.
def interrupt
	Console.info(self, "Sending interrupt to #{@running.size} running processes...")
	@running.each_value do |fiber|
		fiber.resume(Interrupt)
	end
end