Package Products :: Package ZenModel :: Module actions :: 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) source code
 
timedOut(self, value) 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, processExited

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

Class Variables [hide private]

Inherited from twisted.internet.protocol.BaseProtocol: 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)