> ## 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.

# PollingTaskRunner.RunForever

```go theme={"system"}
func (*PollingTaskRunner) RunForever(ctx context.Context) error
```

Run the polling runner continuously, polling for tasks when idle.

## Parameters

<ParamField path="ctx" type="context.Context" required>
  The context controlling the polling loop lifetime.
</ParamField>

## Returns

An error if the polling loop fails.

<RequestExample>
  ```go Go theme={"system"}
  if err := runner.RunForever(ctx); err != nil {
      return err
  }
  ```
</RequestExample>
