Skip to content

Instantly share code, notes, and snippets.

@jaozinfs
Created June 7, 2022 19:32
Show Gist options
  • Save jaozinfs/4b5de60e4ec9beb2fe6b31f5ace4c313 to your computer and use it in GitHub Desktop.
Save jaozinfs/4b5de60e4ec9beb2fe6b31f5ace4c313 to your computer and use it in GitHub Desktop.
fun main() = runBlocking {
val job = launch {
delay(2000)
updateDataBase()
print("Completed Job")
}
job.join()
println("Finish")
readDataBase()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment