From ff51e6adf37df21f1febcd2521ae351d135743d4 Mon Sep 17 00:00:00 2001 From: TheScarastic Date: Thu, 26 May 2022 15:12:36 +0530 Subject: Revert "privacycentralapp: use io dispatcher for actors" This reverts commit e39b47d48f14ccb6e5dd5434ab5ccf0a9aed95a1. Revert "privacycentralapp: use main looper for requestLocationUpdates" This reverts commit 1b6b76879840955c5177125c94849ec0ff760c8b. --- flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt | 3 +-- 1 file changed, 1 insertion(+), 2 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..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 - callerCoroutineScope.launch(Dispatchers.IO) { + callerCoroutineScope.launch { actor.invoke(_state.value, action) .onEach { effect -> mutex.withLock { -- cgit v1.2.1