Skip to content

Instantly share code, notes, and snippets.

@cassiozen
Created November 29, 2018 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cassiozen/b285d11aaf89198c56c44059c1542b0e to your computer and use it in GitHub Desktop.
Save cassiozen/b285d11aaf89198c56c44059c1542b0e to your computer and use it in GitHub Desktop.
suspend fun getStatus(): List<String> {
val currentUserDeferred = someApi.fetchUser()
val currentCompanyDeferred = someApi.fetchCompany()
return listOf(currentUserDeferred.await(), currentCompanyDeferred.await())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment