| java.lang.Object java.io.OutputStream org.apache.harmony.luni.internal.process.ProcessOutputStream
Constructor Summary | |
protected | ProcessOutputStream(long handle) Open an OutputStream based on the handle. |
Method Summary | |
public void | close() | protected void | finalize() There is no way, at the library/VM level, to know when the stream will be
available for closing. | public void | write(byte[] buf) | public void | write(byte[] buf, int offset, int nbytes) | public void | write(int oneByte) |
ProcessOutputStream | protected ProcessOutputStream(long handle)(Code) | | Open an OutputStream based on the handle.
|
finalize | protected void finalize() throws Throwable(Code) | | There is no way, at the library/VM level, to know when the stream will be
available for closing. If the user doesn't close it in its code, the
finalize() will run (eventually ?) and close the dangling OS
fileDescriptor.
|
|
|