Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Sweeper ¶
type Sweeper interface {
// Sweep returns the number of specs that transitioned to verifying.
// The count is consumed by the processor's runSweepTick to drive the
// NothingToDoCallback (no-progress detection in one-shot mode).
Sweep(ctx context.Context) (transitioned int, err error)
}
Sweeper transitions specs in `prompted` status whose linked prompts are all complete to `verifying`. Self-healing safety net for the per-prompt auto-complete path.
func NewSweeper ¶
func NewSweeper(specLister spec.Lister, autoCompleter spec.AutoCompleter) Sweeper
NewSweeper creates a new Sweeper that scans specs and transitions prompted ones whose linked prompts are all complete to verifying.
Click to show internal directories.
Click to hide internal directories.