Class Command


  • public class Command
    extends Object
    A Vert.x Shell command, it can be created from any language using the CommandBuilder.command(java.lang.String) or from a Java class using io.vertx.reactivex.ext.shell.command.Command#create

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • Command

        public Command​(Command delegate)
      • Command

        public Command​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public Command getDelegate()
      • name

        public String name()
        Returns:
        the command name
      • cli

        public CLI cli()
        Returns:
        the command line interface, can be null
      • createProcess

        public Process createProcess()
        Create a new process with empty arguments.
        Returns:
        the process
      • createProcess

        public Process createProcess​(List<CliToken> args)
        Create a new process with the passed arguments.
        Parameters:
        args - the process arguments
        Returns:
        the process
      • complete

        public void complete​(Completion completion)
        Perform command completion, when the command is done completing it should call or )} method to signal completion is done.
        Parameters:
        completion - the completion object