(ctx context.Context)
| 16 | // ContentCache caches contents stored in pack blobs. |
| 17 | type ContentCache interface { |
| 18 | Close(ctx context.Context) |
| 19 | GetContent(ctx context.Context, contentID string, blobID blob.ID, offset, length int64, output *gather.WriteBuffer) error |
| 20 | PrefetchBlob(ctx context.Context, blobID blob.ID) error |
| 21 | CacheStorage() Storage |
no outgoing calls