trait BackgroundCommand
Provides the non-blocking command execution. Each method returns immediately and executes the commandLine concurrently.
| Type | Name and description |
|---|---|
void |
executeBackground(java.lang.String commandLine) |
void |
executeBackground(java.util.List<java.lang.String> commandLineArgs) |
void |
executeBackground(java.lang.String commandLine, groovy.lang.Closure callback) |
void |
executeBackground(java.util.List<java.lang.String> commandLineArgs, groovy.lang.Closure callback) |
void |
executeBackground(java.util.HashMap map, java.lang.String commandLine) |
void |
executeBackground(java.util.HashMap map, java.util.List<java.lang.String> commandLineArgs) |
void |
executeBackground(java.util.HashMap map, java.lang.String commandLine, groovy.lang.Closure callback) |
void |
executeBackground(java.util.HashMap map, java.util.List<java.lang.String> commandLineArgs, groovy.lang.Closure callback) |