Function zarrs::storage::async_retrieve_partial_values

source ·
pub async fn async_retrieve_partial_values(
    storage: &dyn AsyncReadableStorageTraits,
    array_path: &NodePath,
    chunk_grid_indices: &[u64],
    chunk_key_encoding: &ChunkKeyEncoding,
    bytes_ranges: &[ByteRange]
) -> Result<Vec<MaybeBytes>, StorageError>
Available on crate feature async only.
Expand description

Asynchronously retrieve byte ranges from a chunk.

Returns None where keys are not found.

§Errors

Returns a StorageError if there is an underlying error with the store.