Skip to main content

resolve_async

Function resolve_async 

Source
pub async fn resolve_async<F, Fut>(
    fetch_url: F,
    refs: &[PartitionRef],
) -> Result<Vec<ResolvedPartition>, TesseraError>
where F: Fn(PartitionRef) -> Fut, Fut: Future<Output = Result<String, TesseraError>>,
Expand description

Resolve presigned URLs for refs concurrently, preserving order.

ยงErrors

Returns the first fetch error, if any.