BlobStream is an optional interface that may be implemented by Storage implementations. StreamBlobs sends blobs to dest in an unspecified order. It is expected that a Storage implementation implementing BlobStreamer will send blobs to dest in the most efficient order possible. The provided continu
(ctx context.Context, dest chan<- BlobAndToken, contToken string)
| 124 | // |
| 125 | // When StreamBlobs reaches the end, the return value is nil. |
| 126 | StreamBlobs(ctx context.Context, dest chan<- BlobAndToken, contToken string) error |
| 127 | } |
| 128 | |
| 129 | // Cache is the minimal interface expected of a blob cache. |
no outgoing calls