Hello, given I have a SharedFlow and I apply opera...
# coroutines
d
Hello, given I have a SharedFlow and I apply operators like map() and filter() on it. Do I need to make the resulting Flow shared as well for the map/filter operations to be shared or will their results be shared by default, because the underlying flow is already shared?
r
Everything downstream of the last share is not shared, and rerun for each subscriber
👍 1
d