Package ZenEvents :: Module zenactions :: Class EventCommandProtocol
[hide private]
[frames] | no frames]

Class EventCommandProtocol

source code

twisted.internet.protocol.BaseProtocol --+    
                                         |    
 twisted.internet.protocol.ProcessProtocol --+
                                             |
                                            EventCommandProtocol

Instance Methods [hide private]
 
__init__(self, cmd, server) source code
 
timedOut(self) source code
 
processEnded(self, reason)
This will be called when the subprocess is finished.
source code
 
outReceived(self, text)
Some data was received from stdout.
source code
 
errReceived(self, text)
Some data was received from stderr.
source code

Inherited from twisted.internet.protocol.ProcessProtocol: childConnectionLost, childDataReceived, errConnectionLost, inConnectionLost, outConnectionLost

Inherited from twisted.internet.protocol.BaseProtocol: __providedBy__, connectionMade, makeConnection

Class Variables [hide private]

Inherited from twisted.internet.protocol.BaseProtocol: __implemented__, __provides__, connected, transport

Method Details [hide private]

processEnded(self, reason)

source code 
This will be called when the subprocess is finished.
Overrides: twisted.internet.protocol.ProcessProtocol.processEnded
(inherited documentation)

outReceived(self, text)

source code 
Some data was received from stdout.
Overrides: twisted.internet.protocol.ProcessProtocol.outReceived
(inherited documentation)

errReceived(self, text)

source code 
Some data was received from stderr.
Overrides: twisted.internet.protocol.ProcessProtocol.errReceived
(inherited documentation)