Package org.eclipse.cdt.utils.pty
Class ConPTYOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.eclipse.cdt.utils.pty.PTYOutputStream
-
- org.eclipse.cdt.utils.pty.ConPTYOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class ConPTYOutputStream extends PTYOutputStream
- Restriction:
- This class is not intended to be referenced by clients.
-
-
Constructor Summary
Constructors Constructor Description ConPTYOutputStream(ConPTY conPty)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Close the Readervoid
write(byte[] b, int off, int len)
-
Methods inherited from class org.eclipse.cdt.utils.pty.PTYOutputStream
finalize, write
-
Methods inherited from class java.io.OutputStream
flush, nullOutputStream, write
-
-
-
-
Constructor Detail
-
ConPTYOutputStream
public ConPTYOutputStream(ConPTY conPty)
-
-
Method Detail
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classPTYOutputStream
- Throws:
IOException
- See Also:
OutputStream.write(byte[], int, int)
-
close
public void close() throws IOException
Description copied from class:PTYOutputStream
Close the Reader- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classPTYOutputStream
- Throws:
IOException
- on error.
-
-