Debouncer

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

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