Script
Purpose¶
Call and list scripts.
Methods¶
Binding name: p6.control
Method: void call(String scriptName)
Execute the named script and waits for it to complete. The current pipeline will be used by the called script.
Method: String[] moduleNames()
Return a collection of all scripts names.
Examples¶
p6.control.moduleNames().each() { println "${it}" } p6.pipeline.put "id", "MyControlTest" p6.control.call("Sleeper")