Part of twisted.flow.wrap View Source View In Hierarchy
Wrapper for iterable objects, pass in a next() function
This wraps functions (or bound methods). Execution starts with the initial function. If the return value is a Stage, then control passes on to that stage for the next round of execution. If the return value is Cooperate, then the chain of Stages is put on hold, and this return value travels all the way up the call stack so that the underlying mechanism can sleep, or perform other tasks, etc. All other non-Instruction return values, Failure objects included, are passed back to the previous stage via self.result
All exceptions signal the end of the Stage. StopIteration means to stop without providing a result, while all other exceptions provide a Failure self.result followed by stoppage.Method | __init__ | Undocumented |
Method | _yield | executed during a yield statement |
Inherited from Stage:
Method | __iter__ | Undocumented |
Method | next | return current result |