Debouncer
constructor(timeoutMillis: Int, maxWaitMillis: Int = -1, scope: CoroutineScope = CoroutineScope(Dispatchers.Default + Job()))
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