Hi everyone ! I have a large number of flows and only want to collect up to N flows at once. Is there a way to apply some kind of LRU caching of flows and stop collecting them after being evicted from the cache ? I previously implemented that using `BroadcastChannel`s but since they are deprecated I have to find a solution with
SharedFlow
, which has no
close
method...