Class Pty


  • public class Pty
    extends Object
    A pseudo terminal used for controlling a Tty. This interface acts as a pseudo terminal master, slave() returns the assocated slave pseudo terminal.

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

    • Field Detail

      • __TYPE_ARG

        public static final TypeArg<Pty> __TYPE_ARG
    • Constructor Detail

      • Pty

        public Pty​(Pty delegate)
      • Pty

        public Pty​(Object delegate)
    • Method Detail

      • hashCode

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

        public Pty getDelegate()
      • create

        public static Pty create()
        Create a new pseudo terminal with no terminal type.
        Returns:
      • create

        public static Pty create​(String terminalType)
        Create a new pseudo terminal.
        Parameters:
        terminalType - the terminal type, for instance
        Returns:
        the created pseudo terminal
      • stdoutHandler

        public Pty stdoutHandler​(Handler<String> handler)
        Set the standard out handler of the pseudo terminal.
        Parameters:
        handler - the standard output
        Returns:
        this current object
      • write

        public Pty write​(String data)
        Write data to the slave standard input of the pseudo terminal.
        Parameters:
        data - the data to write
        Returns:
        this current object
      • setSize

        public Pty setSize​(int width,
                           int height)
        Resize the terminal.
        Parameters:
        width -
        height -
        Returns:
        this current object
      • slave

        public Tty slave()
        Returns:
        the pseudo terminal slave
      • newInstance

        public static Pty newInstance​(Pty arg)