Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e39b47d4 authored by Abhishek Aggarwal's avatar Abhishek Aggarwal
Browse files

privacycentralapp: use io dispatcher for actors

parent 65fb5365
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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 {