twisted.internet.protocol.ProcessProtocol(BaseProtocol)
class documentationtwisted.internet.protocol
View Source
(View In Hierarchy)
Known subclasses: twisted.conch.ssh.session._ProtocolWrapper, twisted.conch.ssh.session.SSHSessionProcessProtocol, twisted.conch.stdio.TerminalProcessProtocol, twisted.internet.endpoints._WrapIProtocol, twisted.internet.utils._BackRelay, twisted.internet.utils._EverythingGetter, twisted.internet.utils._ValueGetter, twisted.mail.alias.ProcessAliasProtocol, twisted.runner.procmon.LoggingProtocol, twisted.trial._dist.worker.LocalWorker, twisted.web.twcgi.CGIProcessProtocol
Implements interfaces: twisted.internet.interfaces.IProcessProtocol
Base process protocol implementation which does simple dispatching for stdin, stdout, and stderr file descriptors.
Method | childDataReceived | Called when data arrives from the child process. |
Method | outReceived | Some data was received from stdout. |
Method | errReceived | Some data was received from stderr. |
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. |
Method | processEnded | Called when the child process exits and all file descriptors associated with it have been closed. |
Inherited from BaseProtocol:
Method | makeConnection | Make a connection to a transport and a server. |
Method | connectionMade | Called when a connection is made. |
Some data was received from stdout.
Some data was received from stderr.
Called when a file descriptor associated with the child process is closed.
Parameters | childFD | The file descriptor which was closed. (type: int ) |
This will be called when stdout is closed.
This will be called when stderr is closed.
Called when the child process exits and all file descriptors associated with it have been closed.