# TaskRunner.run_forever

```python
def TaskRunner.run_forever()
```

Run the runner forever. This will poll for new tasks and execute them as they come in.
If no tasks are available, it will sleep for a short time and then try again.

```python title="Python"
# run forever, until the current process is stopped
runner.run_forever()
```
