SimpleEnumerateBlobs sends all blobs to the provided channel. The channel will be closed, regardless of whether an error is returned.
(ctx context.Context, ch chan<- blob.SizedRef)
| 37 | // SimpleEnumerateBlobs sends all blobs to the provided channel. |
| 38 | // The channel will be closed, regardless of whether an error is returned. |
| 39 | func (c *Client) SimpleEnumerateBlobs(ctx context.Context, ch chan<- blob.SizedRef) error { |
| 40 | return c.EnumerateBlobsOpts(ctx, ch, EnumerateOpts{}) |
| 41 | } |
| 42 | |
| 43 | func (c *Client) EnumerateBlobs(ctx context.Context, dest chan<- blob.SizedRef, after string, limit int) error { |
| 44 | if c.sto != nil { |
no test coverage detected