Uses of Class
org.wildfly.core.launcher.Launcher
Packages that use Launcher
-
Uses of Launcher in org.wildfly.core.launcher
Methods in org.wildfly.core.launcher that return LauncherModifier and TypeMethodDescriptionLauncher.addEnvironmentVariable(String key, String value) Adds an environment variable to the process being created.Launcher.addEnvironmentVariables(Map<String, String> env) Adds the environment variables to the process being created.Launcher.inherit()Sets the output and error streams to inherit the output and error streams from it's parent process.static LauncherLauncher.of(CommandBuilder builder) Creates a new launcher to create aprocessbased on the command builder.Launcher.redirectError(File file) Redirects the error stream of the process to a file.Launcher.redirectError(ProcessBuilder.Redirect destination) Redirects the error stream of the process to the destination provided.Launcher.redirectOutput(File file) Redirects the output of the process to a file.Launcher.redirectOutput(ProcessBuilder.Redirect destination) Redirects the output of the process to the destination provided.Launcher.redirectOutput(Path path) Redirects the output of the process to a file.Launcher.setDirectory(File dir) Sets the working directory for the process created.Launcher.setDirectory(String dir) Sets the working directory for the process created.Launcher.setDirectory(Path path) Sets the working directory for the process created.Launcher.setRedirectErrorStream(boolean redirectErrorStream) Set totrueif the error stream should be redirected to the output stream.