Would it be somehow possible to "intercept" StateF...
# coroutines
r
Would it be somehow possible to "intercept" StateFlow subscriptions (and do something before and after all subscribers get new value)?
e
.onEach {}
would be "before" subscribers get each value, although the resulting type isn't StateFlow anymore so not sure if that would work for you
and it's unclear to me what "after" should mean, you can't control when a subscriber is "done" handing a value
d
Transform