From d3c76d20e4a79d44947404a7bb411a8f5c496256 Mon Sep 17 00:00:00 2001 From: TheScarastic Date: Thu, 16 Jun 2022 18:02:55 +0530 Subject: advanced-privacy: run everything in same scope to prevent race conditions --- .../src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'flow-mvi/src/main/java/foundation/e/flowmvi') diff --git a/flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt b/flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt index 068cd8e..e3dd257 100644 --- a/flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt +++ b/flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt @@ -24,6 +24,7 @@ import foundation.e.flowmvi.Reducer import foundation.e.flowmvi.SingleEventProducer import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.Job import kotlinx.coroutines.channels.Channel import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.MutableStateFlow @@ -104,11 +105,12 @@ open class BaseFeature.collectIntoHandler( - callerCoroutineScope: CoroutineScope, + @Suppress("UNUSED_PARAMETER")callerCoroutineScope: CoroutineScope, @Suppress("UNUSED_PARAMETER") logger: Logger ) { + val scope = CoroutineScope(Dispatchers.IO + Job()) onEach { action -> - callerCoroutineScope.launch(Dispatchers.IO) { + scope.launch { actor.invoke(_state.value, action) .onEach { effect -> mutex.withLock { @@ -123,9 +125,9 @@ open class BaseFeature