class Async::Container::Generic
def run(count: Container.processor_count, **options, &block)
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