Class t.i.p.ProcessProtocol(BaseProtocol):

Part of twisted.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.utils._BackRelay, twisted.internet.utils._EverythingGetter, twisted.internet.utils._ValueGetter, twisted.mail.alias.ProcessAliasProtocol, twisted.runner.procmon.LoggingProtocol, twisted.web.twcgi.CGIProcessProtocol, twisted.web2.stream._ProcessStreamerProtocol, twisted.web2.twcgi.CGIProcessProtocol

Processes have some additional methods besides receiving data.
Method childDataReceived Undocumented
Method outReceived Some data was received from stdout.
Method errReceived Some data was received from stderr.
Method childConnectionLost Undocumented
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 processEnded This will be called when the subprocess is finished.

Inherited from BaseProtocol:

Method makeConnection Make a connection to a transport and a server.
Method connectionMade Called when a connection is made.
def childDataReceived(self, childFD, data): (source)
Undocumented
def outReceived(self, data): (source)
Some data was received from stdout.
def errReceived(self, data): (source)
Some data was received from stderr.
def childConnectionLost(self, childFD): (source)
Undocumented
def inConnectionLost(self): (source)
This will be called when stdin is closed.
def outConnectionLost(self): (source)
This will be called when stdout is closed.
def errConnectionLost(self): (source)
This will be called when stderr is closed.
def processEnded(self, reason): (source)
This will be called when the subprocess is finished.
Parametersreason(type: twisted.python.failure.Failure )
API Documentation for twisted, generated by pydoctor.