Skip to main content
func (*PollingTaskRunner) RunForever(ctx context.Context) error
Run the polling runner continuously, polling for tasks when idle.

Parameters

ctx
context.Context
required
The context controlling the polling loop lifetime.

Returns

An error if the polling loop fails.
if err := runner.RunForever(ctx); err != nil {
    return err
}