Debouncer
class Debouncer(timeoutMillis: Int, maxWaitMillis: Int = -1, scope: CoroutineScope = CoroutineScope(Dispatchers.Default + Job()))
A coroutine based debouncer
val debouncer = Debouncer(200)
for (i in 0..100) {
debouncer.emit { println("Hello!") }
}
Content copied to clipboard
Parameters
timeout Millis
How long to wait after the last emit before running the action
max Wait Millis
The maximum time to wait before running the action. This works similar to a throttle.
scope
The coroutine scope to run the action in