createMainProcessOnlyDeployment

abstract fun createMainProcessOnlyDeployment()

Shorthand to deploy all service hosts in the main process. Equivalent to:

globalDeployments {
create(RuntimeDeploymentIdentifier.globalRuntime) {
deployServiceHosts(all()).inMainProcess()
}
}
multipleInstanceDeployments {
create(RuntimeDeploymentIdentifier.defaultRuntime) {
iviInstances = listOf(IviInstanceIdentifier.default)
deployServiceHosts(all()).inMainProcess()
}
}

__Note:__ This may only be used for integration test projects.