module Mutest::Parallel

Parallel execution engine of arbitrary payloads

Public Class Methods

async(config) click to toggle source

Run async computation returning driver

@return [Driver]

# File lib/mutest/parallel.rb, line 27
def self.async(config)
  Driver.new(config.env.new_mailbox.bind(Master.call(config)))
end