ReadRange implements backend.Reader
(ctx context.Context, name string, blockID uuid.UUID, tenantID string, offset uint64, buffer []byte, cacheInfo *CacheInfo)
| 213 | |
| 214 | // ReadRange implements backend.Reader |
| 215 | func (r *reader) ReadRange(ctx context.Context, name string, blockID uuid.UUID, tenantID string, offset uint64, buffer []byte, cacheInfo *CacheInfo) error { |
| 216 | return r.r.ReadRange(ctx, name, KeyPathForBlock(blockID, tenantID), offset, buffer, cacheInfo) |
| 217 | } |
| 218 | |
| 219 | // Tenants implements backend.Reader |
| 220 | func (r *reader) Tenants(ctx context.Context) ([]string, error) { |
nothing calls this directly
no test coverage detected