Uses of Class
org.robovm.compiler.util.Executor
| Package | Description |
|---|---|
| org.robovm.compiler.target | |
| org.robovm.compiler.util |
-
Uses of Executor in org.robovm.compiler.target
Methods in org.robovm.compiler.target that return Executor Modifier and Type Method Description protected ExecutorConsoleTarget. createExecutor(LaunchParameters launchParameters, String cmd, List<? extends Object> args) -
Uses of Executor in org.robovm.compiler.util
Methods in org.robovm.compiler.util that return Executor Modifier and Type Method Description ExecutorExecutor. addEnv(String name, String value)Adds a single environment variable.ExecutorExecutor. args(Object... args)Adds one or more argument.ExecutorExecutor. args(Collection<Object> args)Adds arguments from the specifiedCollection.ExecutorExecutor. closeOutputStreams(boolean b)Sets whether the stdout and stderrOutputStreams should be closed after the command has finished.ExecutorExecutor. env(Map<String,String> env)Sets the environment variables for the child process.ExecutorExecutor. err(OutputStream err)Redirects the stderr stream of the child process to the specifiedOutputStream.ExecutorExecutor. errOut(OutputStream out)Redirects the stdout and stderr streams of the child process to the specifiedOutputStream.ExecutorExecutor. in(InputStream in)Uses the specifiedInputStreamas the stdin stream for the child process.ExecutorExecutor. inheritEnv(boolean b)Sets whether the parent's environment variables should be inherited by the child process.ExecutorExecutor. out(OutputStream out)Redirects the stdout stream of the child process to the specifiedOutputStream.ExecutorExecutor. streamHandler(org.apache.commons.exec.ExecuteStreamHandler streamHandler)Sets theExecuteStreamHandlerto be used by the underlyingExecutor.ExecutorExecutor. wd(File wd)Sets the working directory of the child process.