class Async::Container::Generic

def run(count: Container.processor_count, **options, &block)

@parameter count [Integer] The number of instances to start.
Run multiple instances of the same block in the container.
def run(count: Container.processor_count, **options, &block)
	count.times do
		spawn(**options, &block)
	end
	
	return self
end