| java.lang.Object java.io.InputStream org.apache.harmony.luni.internal.process.ProcessInputStream
Constructor Summary | |
protected | ProcessInputStream(long handle) Open an InputStream based on the handle. |
Method Summary | |
public int | available() | 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 int | read() | public int | read(byte[] buffer) | public int | read(byte[] buffer, int offset, int nbytes) |
ProcessInputStream | protected ProcessInputStream(long handle)(Code) | | Open an InputStream 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 his code, the
finalize() will run (eventually ?) and close the dangling OS
fileDescriptor.
|
|
|