processIsolation

abstract fun processIsolation(): WorkQueue

Creates a WorkQueue to submit work for asynchronous execution in a daemon process. Work will execute in an idle daemon, if available. If no idle daemons are available, a new daemon will be started.


abstract fun processIsolation(action: Action<out Any>): WorkQueue

Creates a WorkQueue to submit work for asynchronous execution in a daemon process. Work will execute in an idle daemon matching the requirements specified in the supplied ProcessWorkerSpec, if available. If no idle daemons are available, a new daemon will be started.