(ctx context.Context, n int64)
| 74 | // ByteLimiter abstracts byte-based throttling for downloads. |
| 75 | type ByteLimiter interface { |
| 76 | WaitN(ctx context.Context, n int64) error |
| 77 | } |
| 78 | |
| 79 | // RuntimeConfig carries network and downloader tuning knobs. |
no outgoing calls