type

TaskRunSummary

type TaskRunSummary struct { Claimed int Succeeded int Retried int Failed int Released int Pruned int }

Counters for one bounded worker claim cycle.

Source core/task.go:383

Claimedint
Tasks leased in this cycle.
Succeededint
Tasks completed successfully.
Retriedint
Tasks scheduled for another attempt.
Failedint
Tasks moved to terminal failure.
Releasedint
Leases released without executing.
Prunedint
Expired terminal records removed.

Handler failures are persisted as retry or dead-letter state and do not become infrastructure errors.