Hi everyone, I'm trying the `throttleFirst` implem...
# coroutines
e
Hi everyone, I'm trying the
throttleFirst
implementation suggested here: https://github.com/Kotlin/kotlinx.coroutines/issues/1446#issuecomment-2260493613 But in the playground, if I change
this.throttleFirst ..
with
merge(this).throttleFirst ...
, the result are different (screenshots below). Can anyone help to explain why and how the
merge
operation impact the behavior? I would like to merge some Flows, and throttle it.