Last active
June 21, 2023 22:46
-
-
Save mirmilad/f7feb8007d6b572150cb84fef0b65879 to your computer and use it in GitHub Desktop.
Simple debounce extension for LiveData by using Coroutines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
For folks wondering on how to use this: