Skip to content

Instantly share code, notes, and snippets.

@hasankucuk
Created January 21, 2021 09:28
Show Gist options
  • Save hasankucuk/0729042b0458336e9d4677444d542a2f to your computer and use it in GitHub Desktop.
Save hasankucuk/0729042b0458336e9d4677444d542a2f to your computer and use it in GitHub Desktop.
flow api
val flow: Flow<Int> = flow { delay(100) for(i in 1..10) { emit(i) } }.map { delay(100) it * it }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment