php.java.bridge.http
Interface IFCGIProcess

All Known Implementing Classes:
FCGIProcess

public interface IFCGIProcess

Common methods for all FCGIProcesses

Author:
jostb

Method Summary
 void destroy()
          Terminate the process
 java.io.OutputStream getOutputStream()
          Get the process output stream
 void start()
          Start a new FCGIProcess
 int waitFor()
          Wait for a FCGIProcess until it has been terminated or interrupted
 

Method Detail

start

void start()
           throws java.io.IOException
Start a new FCGIProcess

Throws:
java.io.IOException

waitFor

int waitFor()
            throws java.lang.InterruptedException
Wait for a FCGIProcess until it has been terminated or interrupted

Returns:
the process return value
Throws:
java.lang.InterruptedException

getOutputStream

java.io.OutputStream getOutputStream()
Get the process output stream

Returns:
the output stream

destroy

void destroy()
Terminate the process