Is it possible to have the `emitAll` in the follow...
# coroutines
s
Is it possible to have the
emitAll
in the following be cancelled when the args are updated?
Copy code
combineTransform(flow1, flow2) { arg1, arg2 -> emitAll(createFlow(arg1, arg2)) }
e
Copy code
combine(flow1, flow2) { arg1, arg2 -> createFlow(arg1, arg2) }
    .collectLatest { emitAll(it) }
s
Thanks! I also found this while searching for a solution: https://github.com/Kotlin/kotlinx.coroutines/issues/1484