Class Rake::MultiTask
In: lib/rake.rb
Parent: Task

######################################################################### Same as a regular task, but the immediate prerequisites are done in parallel using Ruby threads.

Methods

Public Instance methods

[Source]

     # File lib/rake.rb, line 807
807:     def invoke_prerequisites(args, invocation_chain)
808:       threads = @prerequisites.collect { |p|
809:         Thread.new(p) { |r| application[r].invoke_with_call_chain(args, invocation_chain) }
810:       }
811:       threads.each { |t| t.join }
812:     end

[Validate]