class IProcessProtocol(Interface): (source)
Known implementations: twisted.internet.protocol.ProcessProtocol
| Method | childConnectionLost |
Called when a file descriptor associated with the child process is closed. |
| Method | childDataReceived |
Called when data arrives from the child process. |
| Method | makeConnection |
Called when the process has been created. |
| Method | processEnded |
Called when the child process exits and all file descriptors associated with it have been closed. |
| Method | processExited |
Called when the child process exits. |
| Parameters | |
childFD:int | The file descriptor which was closed. |
| Parameters | |
process:IProcessTransport | An object representing the process which has been created and associated with this protocol. |
| Parameters | |
reason:Failure | A failure giving the reason the child process terminated. The type of exception for this failure is either twisted.internet.error.ProcessDone or twisted.internet.error.ProcessTerminated. |
| Parameters | |
reason:Failure | A failure giving the reason the child process terminated. The type of exception for this failure is either twisted.internet.error.ProcessDone or twisted.internet.error.ProcessTerminated. |
| Present Since | |
| 8.2 | |