> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TaskRunner.run_forever

```python theme={"system"}
def TaskRunner.run_forever()
```

Run the task 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.

<RequestExample>
  ```python Python theme={"system"}
  # run forever, until the current process is stopped
  runner.run_forever()
  ```
</RequestExample>
