twisted.test.test_process.Win32SignalProtocol(SignalProtocol)
class documentationtwisted.test.test_process
(View In Hierarchy)
A win32-specific process protocol that handles processEnded
differently: processes should exit with exit code 1.
Method | processEnded | Callback self.deferred with None
if reason is a error.ProcessTerminated
failure with exitCode set to 1. Otherwise, errback with a
ValueError describing the problem. |
Inherited from SignalProtocol:
Instance Variable | deferred | deferred firing on processEnded . (type: defer.Deferred ) |
Instance Variable | signal | the signal to send to the process. (type: str ) |
Instance Variable | signaled | A flag tracking whether the signal has been sent to the child or not yet.
False until it is sent, then True . (type: bool ) |
Method | __init__ | Undocumented |
Method | outReceived | Handle the first output from the child process (which indicates it is set up and ready to receive the signal) by sending the signal to it. Also log all output to help with debugging. |
Method | errReceived | Log all data received from the child's stderr to help with debugging. |
Inherited from ProcessProtocol (via SignalProtocol):
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 | 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 SignalProtocol, ProcessProtocol):
Method | makeConnection | Make a connection to a transport and a server. |
Method | connectionMade | Called when a connection is made. |
Callback self.deferred
with None
if reason
is a error.ProcessTerminated
failure with exitCode
set to 1. Otherwise, errback with a
ValueError
describing the problem.