Skip to content

Instantly share code, notes, and snippets.

@snyderra
Forked from mirmilad/debounce.kt
Created June 21, 2023 22:46
Show Gist options
  • Select an option

  • Save snyderra/6d62405ad407e641e4b80e0e160facef to your computer and use it in GitHub Desktop.

Select an option

Save snyderra/6d62405ad407e641e4b80e0e160facef 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