Uses of Interface
io.reactiverse.childprocess.ProcessBuilder
-
-
Uses of ProcessBuilder in io.reactiverse.childprocess
Methods in io.reactiverse.childprocess that return ProcessBuilder Modifier and Type Method Description static ProcessBuilder
Process. create(Vertx vertx, String command)
Create a child process (not running) from this process, callstart()
to start the process.static ProcessBuilder
Process. create(Vertx vertx, String command, ProcessOptions options)
Create a child process (not running) from this process, callstart()
to start the process.static ProcessBuilder
Process. create(Vertx vertx, String command, List<String> args)
Create a child process (not running) from this process, callstart()
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, callstart()
to start the process.ProcessBuilder
ProcessBuilder. startHandler(Handler<Process> handler)
Set the handler to be called when the process starts.
-