Package perforce :: Module results :: Class ResultsOutputConsumer
[frames] | no frames]

Class ResultsOutputConsumer



object --+
         |
        ResultsOutputConsumer

An IOutputConsumer that places all output into a Results object.

The results are obtainable via the results attribute of instances.

Instance Methods
 
__init__(self, results=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
outputMessage(self, message)
 
outputRecord(self, record)
 
outputForm(self, form)
 
outputBinary(self, data)
 
outputText(self, data)
 
finished(self)

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Instance Variables
Results results
The object that receives the results of running a command.
Properties

Inherited from object: __class__

Method Details

__init__(self, results=None)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)