Method: PDK::CLI::ExecGroup.create
- Defined in:
- lib/pdk/cli/exec_group.rb
.create(message, create_options = {}, group_opts = {}) ⇒ ExecGroup
Execution Group (ExecGroup) factory.
16 17 18 19 20 21 22 |
# File 'lib/pdk/cli/exec_group.rb', line 16 def self.create(, = {}, group_opts = {}) if [:parallel] ParallelExecGroup.new(, group_opts) else SerialExecGroup.new(, group_opts) end end |