Has anyone observed any performance impact from ac...
# flow
c
Has anyone observed any performance impact from accessing
StateFlow.value
very often? For example, every 15-30 ms. I realize I could just keep a reference, but I worry about it getting stale. Thanks for any insight
w
If you want to be aware of the most recent value, why not
collect { }
it?