diff options
author | TheScarastic <warabhishek@e.email> | 2022-05-24 17:49:44 +0530 |
---|---|---|
committer | TheScarastic <warabhishek@e.email> | 2022-05-24 17:55:10 +0530 |
commit | e39b47d48f14ccb6e5dd5434ab5ccf0a9aed95a1 (patch) | |
tree | 2bc9803c60b9c19dff4ffd9d63f3a32b03370461 | |
parent | 65fb53658a4780f9d7b50b29b780cdd0ebef8f41 (diff) |
privacycentralapp: use io dispatcher for actors
-rw-r--r-- | flow-mvi/src/main/java/foundation/e/flowmvi/feature/BaseFeature.kt | 3 |
1 files changed, 2 insertions, 1 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 1429d1a..068cd8e 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,6 +23,7 @@ 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 @@ -107,7 +108,7 @@ open class BaseFeature<State : Any, in Action : Any, in Effect : Any, SingleEven @Suppress("UNUSED_PARAMETER") logger: Logger ) { onEach { action -> - callerCoroutineScope.launch { + callerCoroutineScope.launch(Dispatchers.IO) { actor.invoke(_state.value, action) .onEach { effect -> mutex.withLock { |