Method Summary |
|
abstract public void | destroy() Terminates the receiver and closes any associated streams. |
abstract public int | exitValue() Answers the exit value of the receiving Process. |
abstract public InputStream | getErrorStream() Answers the receiver's error output stream. |
abstract public InputStream | getInputStream() Answers the receiver's standard input stream
Note: This is an InputStream which allows reading from the other process'
"stdout". |
abstract public OutputStream | getOutputStream() Answers the receiver's standard output stream
Note: This is an OutputStream which allows writing to the other process'
"stdin". |
abstract public int | waitFor() Causes the calling thread to wait for the process associated with the
receiver to finish executing. |