Expand description
Standardized heartbeat for poll-until-ready loops.
Every “wait for X to become ready” loop in ryra has the same shape: probe a
condition on a fixed interval, bounded by a timeout, and bail if the timeout
trips. Left silent, a slow wait reads as a hang. WaitProgress gives all
of them one consistent line — what is being probed, how many checks have
run, and the limit — printed on a throttled cadence so fast waits stay
quiet while slow ones always show life.
Structs§
- Wait
Progress - Tracks one poll-until-ready loop: owns the clock, counts probes, and emits a throttled heartbeat line.