Package io.vertx.rxjava.ext.shell.term
Class Tty
- java.lang.Object
-
- io.vertx.rxjava.ext.shell.term.Tty
-
- Direct Known Subclasses:
CommandProcess,Term
public class Tty extends Object
Provide interactions with the Shell TTY. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Tty>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)TtygetDelegate()inthashCode()intheight()static TtynewInstance(Tty arg)Ttyresizehandler(Handler<Void> handler)Set a resize handler, the handler is called when the tty size changes.TtystdinHandler(Handler<String> handler)Set a stream handler on the standard input to read the data.StringtoString()Stringtype()intwidth()Ttywrite(String data)Write data to the standard output.
-
-
-
Method Detail
-
getDelegate
public Tty getDelegate()
-
type
public String type()
- Returns:
- the declared tty type, for instance , , etc... it can be null when the tty does not have declared its type.
-
width
public int width()
- Returns:
- the current width, i.e the number of rows or if unknown
-
height
public int height()
- Returns:
- the current height, i.e the number of columns or if unknown
-
stdinHandler
public Tty stdinHandler(Handler<String> handler)
Set a stream handler on the standard input to read the data.- Parameters:
handler- the standard input- Returns:
- this object
-
write
public Tty write(String data)
Write data to the standard output.- Parameters:
data- the data to write- Returns:
- this object
-
resizehandler
public Tty resizehandler(Handler<Void> handler)
Set a resize handler, the handler is called when the tty size changes.- Parameters:
handler- the resize handler- Returns:
- this object
-
-