Package org.eclipse.cdt.utils.pty
Class PTYInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.eclipse.cdt.utils.pty.PTYInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
ConPTYInputStream
public class PTYInputStream extends InputStream
- Since:
- 6.0
-
-
Constructor Summary
Constructors Constructor Description PTYInputStream(PTY.MasterFD fd)From a Unix valid file descriptor set a Reader.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close the Readerprotected voidfinalize()intread()Implementation of read for the InputStream.intread(byte[] buf, int off, int len)-
Methods inherited from class java.io.InputStream
available, mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
PTYInputStream
public PTYInputStream(PTY.MasterFD fd)
From a Unix valid file descriptor set a Reader.- Parameters:
fd- file descriptor.
-
-
Method Detail
-
read
public int read() throws IOExceptionImplementation of read for the InputStream.- Specified by:
readin classInputStream- Throws:
IOException- on error.
-
read
public int read(byte[] buf, int off, int len) throws IOException- Overrides:
readin classInputStream- Throws:
IOException- See Also:
InputStream.read(byte[], int, int)
-
close
public void close() throws IOExceptionClose the Reader- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException- on error.
-
finalize
protected void finalize() throws IOException- Overrides:
finalizein classObject- Throws:
IOException
-
-