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

```go theme={"system"}
func (*PollingTaskRunner) IsRequestingTasks() bool
```

Report whether the polling runner is currently requesting new tasks.

## Returns

`true` if the runner is requesting new tasks.

<RequestExample>
  ```go Go theme={"system"}
  if runner.IsRequestingTasks() {
      slog.Info("runner is requesting tasks")
  }
  ```
</RequestExample>
