Skip to content

Instantly share code, notes, and snippets.

@mRB0
Last active March 17, 2018 18:46
Show Gist options
  • Save mRB0/ad3f256194511226a72ec80e13aa2d44 to your computer and use it in GitHub Desktop.
Save mRB0/ad3f256194511226a72ec80e13aa2d44 to your computer and use it in GitHub Desktop.
private val loadJob: Job? = null
fun onClick() {
loadJob?.cancel()
loadJob = async(UI) {
val image = loadImage() // suspend fun loadImage
imageView.image = image
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment