Uses of Class
io.reactiverse.childprocess.ProcessOptions
-
-
Uses of ProcessOptions in io.reactiverse.childprocess
Methods in io.reactiverse.childprocess that return ProcessOptions Modifier and Type Method Description ProcessOptions
ProcessOptions. setCwd(String cwd)
Set the child process current working directory.ProcessOptions
ProcessOptions. setEnv(Map<String,String> env)
Set the child process environment variables as key-value pairs.Methods in io.reactiverse.childprocess with parameters of type ProcessOptions Modifier and Type Method Description static ProcessBuilder
Process. create(Vertx vertx, String command, ProcessOptions options)
Create a child process (not running) from this process, callProcessBuilder.start()
to start the process.static ProcessBuilder
Process. create(Vertx vertx, String command, List<String> args, ProcessOptions options)
Create a child process (not running) from this process, callProcessBuilder.start()
to start the process.Constructors in io.reactiverse.childprocess with parameters of type ProcessOptions Constructor Description ProcessOptions(ProcessOptions that)
-