Part of twisted.internet.interfaces View Source View In Hierarchy
Known implementations: twisted.internet.protocol.ProcessProtocol
Method | makeConnection | Called when the process has been created. |
Method | childDataReceived | Called when data arrives from the child process. |
Method | childConnectionLost | Called when a file descriptor associated with the child process is closed. |
Method | processEnded | Called when the child process exits. |
Parameters | process | An object representing the process which has been created and associated
with this protocol.
(type: IProcessTransport
provider
) |
Parameters | childFD | The file descriptor from which the data was received.
(type: int
) |
data | The data read from the child's file descriptor.
(type: str
) |
Parameters | childFD | The file descriptor which was closed.
(type: int
) |
Parameters | reason | 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 .
(type: twisted.python.failure.Failure
) |