Cycles the flow through the events for the flow. Stops if the flow is intercepted.
(self, addon, f)
| 44 | return False |
| 45 | |
| 46 | async def cycle(self, addon, f): |
| 47 | """ |
| 48 | Cycles the flow through the events for the flow. Stops if the flow |
| 49 | is intercepted. |
| 50 | """ |
| 51 | for evt in eventsequence.iterate(f): |
| 52 | await self.master.addons.invoke_addon(addon, evt) |
| 53 | if f.intercepted: |
| 54 | return |
| 55 | |
| 56 | def configure(self, addon, **kwargs): |
| 57 | """ |