debounceWorker
Executes each lambda in a Flow using debounce and map.
Warning: This will not compute anything if new entries keep coming in at a rate faster than timeoutMillis! This also adds a delay before the first execution!
Especially in UIs you'll usually want to:
execute as quickly as possible, so that the UI feels snappy
get intermediate results to provide some feedback
This is why you'll usually want to use conflatedWorker.
Parameters
timeoutMillis
The debounce timeout.