Skip to content

Instantly share code, notes, and snippets.

@CanerPatir
Last active September 15, 2019 09:43
Show Gist options
  • Select an option

  • Save CanerPatir/e94bce5ea3f201470fde3d56a646ee35 to your computer and use it in GitHub Desktop.

Select an option

Save CanerPatir/e94bce5ea3f201470fde3d56a646ee35 to your computer and use it in GitHub Desktop.
Kotlin-Coroutine
suspend fun someSuspendableOperation(): String {
delay(1000L) // representation of IO operation like going to DB
return "hello"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment