All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.net.humans.kmm.mvi.EffectHandler.kt Maven / Gradle / Ivy

The newest version!
package net.humans.kmm.mvi

/**
 * MVI Effect Handler
 */
@Suppress("MatchingDeclarationName")
fun interface EffectHandler {
    fun handle(eff: Eff)
}

fun  EffectHandler.handle(effects: List) {
    effects.forEach { effect ->
        handle(effect)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy