is there an easy way to do something like `throttl...
# coroutines
m
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
You can find a draft implementation of the
throttleFirst
operator here.
🙏 1
m
that's awesome, thanks!