Last active
September 15, 2019 09:43
-
-
Save CanerPatir/e94bce5ea3f201470fde3d56a646ee35 to your computer and use it in GitHub Desktop.
Kotlin-Coroutine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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