Skip to content

Instantly share code, notes, and snippets.

@AndreVero
Created October 7, 2024 14:16
Show Gist options
  • Save AndreVero/cb539f9f4949b149def0077ad4bdc84b to your computer and use it in GitHub Desktop.
Save AndreVero/cb539f9f4949b149def0077ad4bdc84b to your computer and use it in GitHub Desktop.
val hashMap = ConcurrentHashMap<String, Deferred<Bitmap?>>()
//...
val bitmap = async { loadBitmap(url) }
//...
bitmap?.await()?.let { setImageBitmap(it) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment