module AwsCftTools::Runbooks::Deploy::Threading

module with methods to manage threading

Private Instance Methods

create_threads(list) { |item| ... } click to toggle source
# File lib/aws_cft_tools/runbooks/deploy/threading.rb, line 14
def create_threads(list, &_block)
  list.map { |item| Thread.new { yield item } }
end