RemoveBlobs removes 0 or more blobs. Removal of non-existent items isn't an error. Returns failure if any items existed but failed to be deleted. ErrNotImplemented may be returned for storage types not implementing removal. If RemoveBlobs returns an error, it's possible that either none or only some
(ctx context.Context, blobs []blob.Ref)
| 157 | // If RemoveBlobs returns an error, it's possible that either |
| 158 | // none or only some of the blobs were deleted. |
| 159 | RemoveBlobs(ctx context.Context, blobs []blob.Ref) error |
| 160 | } |
| 161 | |
| 162 | // Storage is the interface that must be implemented by a blobserver |
no outgoing calls