Uses of Interface
io.vertx.ext.shell.command.CommandProcess
Packages that use CommandProcess
-
Uses of CommandProcess in io.vertx.ext.shell.command
Methods in io.vertx.ext.shell.command that return CommandProcessModifier and TypeMethodDescriptionCommandProcess.backgroundHandler(Handler<Void> handler) Set a background handler, this handler is called when the command is running and put to background.CommandProcess.endHandler(Handler<Void> handler) Set an end handler, this handler is called when the command is ended, for instance the command is running and the shell closes.CommandProcess.foregroundHandler(Handler<Void> handler) Set a foreground handler, this handler is called when the command is running and put to foreground.CommandProcess.interruptHandler(Handler<Void> handler) Set an interrupt handler, this handler is called when the command is interrupted, for instance user pressCtrl-C.CommandProcess.resizehandler(Handler<Void> handler) CommandProcess.resumeHandler(Handler<Void> handler) Set a resume handler, this handler is called when the command is resumed, for instance user typesbgorfgto resume the command.CommandProcess.stdinHandler(Handler<String> handler) CommandProcess.suspendHandler(Handler<Void> handler) Set a suspend handler, this handler is called when the command is suspended, for instance user pressCtrl-Z.Write some text to the standard output.Methods in io.vertx.ext.shell.command with parameters of type CommandProcessModifier and TypeMethodDescriptionabstract voidAnnotatedCommand.process(CommandProcess process) Process the command, when the command is done processing it should call theCommandProcess.end()method.Method parameters in io.vertx.ext.shell.command with type arguments of type CommandProcessModifier and TypeMethodDescriptionCommandBuilder.processHandler(Handler<CommandProcess> handler) Set the command process handler, the process handler is called when the command is executed. -
Uses of CommandProcess in io.vertx.ext.shell.command.base
Methods in io.vertx.ext.shell.command.base with parameters of type CommandProcessModifier and TypeMethodDescriptionvoidBusPublish.process(CommandProcess process) voidBusSend.process(CommandProcess process) voidBusTail.process(CommandProcess process) voidEcho.process(CommandProcess process) voidFileSystemCd.process(CommandProcess process) voidFileSystemLs.process(CommandProcess process) voidFileSystemPwd.process(CommandProcess process) voidHelp.process(CommandProcess process) voidLocalMapGet.process(CommandProcess process) voidLocalMapPut.process(CommandProcess process) voidLocalMapRm.process(CommandProcess process) voidNetCommandLs.process(CommandProcess process) voidSleep.process(CommandProcess process) voidVerticleDeploy.process(CommandProcess process) voidVerticleFactories.process(CommandProcess process) voidVerticleLs.process(CommandProcess process) voidVerticleUndeploy.process(CommandProcess process)