twisted.test.test_process.TestManyProcessProtocol(TestProcessProtocol)
class documentationtwisted.test.test_process
(View In Hierarchy)
Method | __init__ | Undocumented |
Method | processEnded | Called when the child process exits and all file descriptors associated with it have been closed. |
Inherited from TestProcessProtocol:
Method | connectionMade | Called when a connection is made. |
Method | childDataReceived | Override and disable the dispatch provided by the base class to ensure
that it is really this method which is being called, and the transport is
not going directly to outReceived or
errReceived . |
Method | childConnectionLost | Similarly to childDataReceived ,
disable the automatic dispatch provided by the base implementation to
verify that the transport is calling this method directly. |
Inherited from ProcessProtocol (via TestProcessProtocol):
Method | outReceived | Some data was received from stdout. |
Method | errReceived | Some data was received from stderr. |
Method | inConnectionLost | This will be called when stdin is closed. |
Method | outConnectionLost | This will be called when stdout is closed. |
Method | errConnectionLost | This will be called when stderr is closed. |
Method | processExited | This will be called when the subprocess exits. |
Inherited from BaseProtocol (via TestProcessProtocol, ProcessProtocol):
Method | makeConnection | Make a connection to a transport and a server. |