Skip to content

Instantly share code, notes, and snippets.

@IMoHaMeDHaMdYI
Forked from mirmilad/debounce.kt
Created April 13, 2020 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IMoHaMeDHaMdYI/2af9b54a656e70668769e2ec08b77377 to your computer and use it in GitHub Desktop.
Save IMoHaMeDHaMdYI/2af9b54a656e70668769e2ec08b77377 to your computer and use it in GitHub Desktop.
Simple debounce extension for LiveData by using Coroutines
import androidx.lifecycle.LiveData
import androidx.lifecycle.MediatorLiveData
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Job
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
fun <T> LiveData<T>.debounce(duration: Long = 1000L, coroutineScope: CoroutineScope) = MediatorLiveData<T>().also { mld ->
val source = this
var job: Job? = null
mld.addSource(source) {
job?.cancel()
job = coroutineScope.launch {
delay(duration)
mld.value = source.value
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment