https://kotlinlang.org logo
#coroutines
Title
# coroutines
m

Maciek

04/06/2020, 5:07 AM
is there an easy way to do something like
throttleFirst
from rxJava? So after emitting value, block the future emissions for given duration
or any tips or resources on implementing custom operators? I can't find anything useful
t

tseisel

04/06/2020, 7:26 AM
You can find a draft implementation of the
throttleFirst
operator here.
🙏 1
m

Maciek

04/06/2020, 7:27 AM
that's awesome, thanks!
10 Views