How viable is it to have global coroutine scope in...
# coroutines
k
How viable is it to have global coroutine scope inside
.stateIn
extension?
Copy code
.stateIn(
        globalCoroutineScope,
        SharingStarted.WhileSubscribed(5),
        null
    )
z
It probably breaks structured concurrency, so not great.