retrieve

abstract suspend fun retrieve(uris: List<String>): Flow<Image>

Asynchronously retrieves images from a list of URIs. This method returns a stream (Flow) of Image objects. The Flow will emit an Image object whenever an image is successfully retrieved from a URI in the provided list. In case of errors during retrieval (e.g., network issues, invalid URI), the behavior depends on the specific implementation. It might throw exceptions or emit error signals in the Flow. Please refer to the implementation documentation for details on error handling.

Return

a Flow of Image objects retrieved from the provided URIs.

Parameters

uris

a list of image URIs (strings) to be retrieved.