summaryrefslogtreecommitdiff
path: root/flow-mvi
diff options
context:
space:
mode:
authorAlexandre R d'anzi <alexandre.roux.danzi@e.email>2022-06-23 17:56:42 +0200
committerAlexandre R d'anzi <alexandre.roux.danzi@e.email>2022-06-23 17:56:42 +0200
commite2157f3aebf1287a77705c52982ea66f5fbd5237 (patch)
tree0792edd0c06195d993a91fe36ad009627c547596 /flow-mvi
parentd231e28732c3607c15bbac9d062ea0728c4945d0 (diff)
Revert "Revert "Revert "privacycentralapp: use io dispatcher for actors"""
This reverts commit 54f9e2181097e8a14112b19b2b9d578a4c4fffa8.
Diffstat (limited to 'flow-mvi')
-rw-r--r--flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt3
1 files changed, 1 insertions, 2 deletions
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..1429d1a 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
@@ -23,7 +23,6 @@ import foundation.e.flowmvi.MVIView
import foundation.e.flowmvi.Reducer
import foundation.e.flowmvi.SingleEventProducer
import kotlinx.coroutines.CoroutineScope
-import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableStateFlow
@@ -108,7 +107,7 @@ open class BaseFeature<State : Any, in Action : Any, in Effect : Any, SingleEven
@Suppress("UNUSED_PARAMETER") logger: Logger
) {
onEach { action ->
- callerCoroutineScope.launch(Dispatchers.IO) {
+ callerCoroutineScope.launch {
actor.invoke(_state.value, action)
.onEach { effect ->
mutex.withLock {