diff options
author | Abhishek Aggarwal <warabhishek@e.email> | 2022-06-06 08:56:01 +0000 |
---|---|---|
committer | Abhishek Aggarwal <warabhishek@e.email> | 2022-06-06 08:56:01 +0000 |
commit | 183afcdbff0b0dd0645b653747407355cae66045 (patch) | |
tree | 76ef0fbe5cf6076ae979fa80cdebaddb778c68c5 /flow-mvi | |
parent | 9a2955ae2debdb6f4e6abe02ca0dfc031a79185f (diff) | |
parent | 53d7c1b83871c1e148ac9e4363319b299afb79ad (diff) |
Merge branch '5444-main-lag' into 'main'
Revert "Revert "privacycentralapp: use io dispatcher for actors""
See merge request e/os/advanced-privacy!67
Diffstat (limited to 'flow-mvi')
-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 { |