ExtractShard reads the tarball f and extracts its metadata.
(lom *cluster.LOM, r cos.ReadReaderAt, extractor RecordExtractor, toDisk bool)
| 24 | |
| 25 | // ExtractShard reads the tarball f and extracts its metadata. |
| 26 | func (t *nopExtractCreator) ExtractShard(lom *cluster.LOM, r cos.ReadReaderAt, extractor RecordExtractor, toDisk bool) (extractedSize int64, extractedCount int, err error) { |
| 27 | return t.internal.ExtractShard(lom, r, extractor, toDisk) |
| 28 | } |
| 29 | |
| 30 | // CreateShard creates a new shard locally based on the Shard. |
| 31 | func (*nopExtractCreator) CreateShard(s *Shard, w io.Writer, loadContent LoadContentFunc) (written int64, err error) { |
nothing calls this directly
no test coverage detected