Skip to content

Instantly share code, notes, and snippets.

@thedroiddiv
Created March 9, 2024 12:48
Show Gist options
  • Save thedroiddiv/f9bcf0b4137f45421c28c0375b2156b2 to your computer and use it in GitHub Desktop.
Save thedroiddiv/f9bcf0b4137f45421c28c0375b2156b2 to your computer and use it in GitHub Desktop.
suspend fun getChatUsers(userIds: List<String>): List<ChatUser> {
return userIds.map { userId ->
async {
getUserById(userId)
}
}.awaitAll()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment