Part of twisted.flow.pipe View Source View In Hierarchy
Known subclasses: twisted.flow.pipe.Filter, twisted.flow.pipe.LineBreak
Method | __init__ | Undocumented |
Method | process | process implemented by the pipe |
Method | _yield | executed during a yield statement by previous stage |
Inherited from Stage:
Method | __iter__ | Undocumented |
Method | next | return current result |
executed during a yield statement by previous stage
This method is private within the scope of the flow module, it is used by one stage in the flow to ask a subsequent stage to produce its value. The result of the yield is then stored in self.result and is an instance of Failure if a problem occurred.process implemented by the pipe
Take a set of possibly empty results and sets the member variables: results, stop, or failure appropriately