summaryrefslogtreecommitdiff
path: root/flow-mvi
diff options
context:
space:
mode:
authorAbhishek Aggarwal <warabhishek@e.email>2022-05-26 09:47:25 +0000
committerAbhishek Aggarwal <warabhishek@e.email>2022-05-26 09:47:25 +0000
commit16e3eb59839d7718fa6a2fe00dbe321a8285db84 (patch)
treeb0e3579bd465586135a8f64ca7fff504c25ebae9 /flow-mvi
parent3c2f148abcc3d927c25dd5fb03784e6cdaf7c6b3 (diff)
parentff51e6adf37df21f1febcd2521ae351d135743d4 (diff)
Merge branch '5444-main-revert_changes' into 'main'
Revert "privacycentralapp: use io dispatcher for actors" See merge request e/privacy-central/privacycentralapp!64
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 {