Registrar is the heartbeat registry seam: register before any container exists so the ID rides every heartbeat, and re-check the recorded abort set before any FAILED POST.
| 51 | // exists so the ID rides every heartbeat, and re-check the recorded abort set |
| 52 | // before any FAILED POST. |
| 53 | type Registrar interface { |
| 54 | TrackVerification(id uuid.UUID, cancel context.CancelFunc) |
| 55 | UntrackVerification(id uuid.UUID) |
| 56 | IsAborted(id uuid.UUID) bool |
| 57 | } |
| 58 | |
| 59 | type diskUsageProber interface { |
| 60 | GetDiskUsageBytes(ctx context.Context) (int64, error) |
no outgoing calls
no test coverage detected