A background task generator that does nothing. Yields: None
(self)
| 1744 | |
| 1745 | @xt.background |
| 1746 | async def background_task_generator(self): |
| 1747 | """A background task generator that does nothing. |
| 1748 | |
| 1749 | Yields: |
| 1750 | None |
| 1751 | """ |
| 1752 | yield |
| 1753 | |
| 1754 | def other(self): |
| 1755 | """Some other event that updates the state.""" |