Skip to content

Instantly share code, notes, and snippets.

@victory316
Last active December 22, 2022 00:18
Show Gist options
  • Save victory316/16f51aa9b038d12af3d00ea1737e2933 to your computer and use it in GitHub Desktop.
Save victory316/16f51aa9b038d12af3d00ea1737e2933 to your computer and use it in GitHub Desktop.
View extensions with coroutine
fun View.setDelayedJob(delayInMillis: Long, operation: () -> Unit): Job {
return CoroutineScope(Dispatchers.IO).launch {
delay(delayInMillis)
CoroutineScope(Dispatchers.Main).launch {
operation.invoke()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment