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!") }
}

Parameters

timeoutMillis

How long to wait after the last emit before running the action

maxWaitMillis

The maximum time to wait before running the action. This works similar to a throttle.

scope

The coroutine scope to run the action in

Constructors

Link copied to clipboard
constructor(timeoutMillis: Int, maxWaitMillis: Int = -1, scope: CoroutineScope = CoroutineScope(Dispatchers.Default + Job()))

Functions

Link copied to clipboard
fun emit(func: suspend () -> Unit)