Just looking at `shareIn()` , if I want to expose ...
# coroutines
m
Just looking at
shareIn()
, if I want to expose a
SharedFlow
from a DataSource (to reduce duplicate queries) what to do about the coroutine scope? For Android,
GlobalScope
,
ProcessLifecycleOwner.get().lifecycle.coroutineScope
or some other strategy altogether?