java.io.Closeable
, java.io.Flushable
, java.lang.AutoCloseable
public class WrapperProcessOutputStream
extends java.io.OutputStream
Modifier and Type | Method | Description |
---|---|---|
void |
close() |
Closes the OutputStream.
|
void |
write(int b) |
Writes a byte to the Stream.
|
public void write(int b) throws java.io.IOException
write
in class java.io.OutputStream
b
- byte to write.java.io.IOException
- in case the stream has been already closed or any
other IO error.WrapperLicenseError
- If the function is called other than in
the Professional Edition or from a Standalone JVM.public void close() throws java.io.IOException
close
in interface java.lang.AutoCloseable
close
in interface java.io.Closeable
close
in class java.io.OutputStream
java.io.IOException
- If there were any problems closing the stream.WrapperLicenseError
- If the function is called other than in
the Professional Edition or from a Standalone JVM.