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

commonMain.pro.respawn.flowmvi.api.MVIAction.kt Maven / Gradle / Ivy

Go to download

A Kotlin Multiplatform MVI library based on plugins that is simple, fast, powerful & flexible

There is a newer version: 3.0.0
Show newest version
package pro.respawn.flowmvi.api

/**
 * A single, one-shot, side-effect of processing an [MVIIntent], sent to [ActionConsumer],
 * processed by [ActionProvider] and handled by [ActionReceiver].
 *
 * Must be **immutable** and **comparable**, most likely a data class or a data object.
 */
public interface MVIAction {

    override fun equals(other: Any?): Boolean
    override fun hashCode(): Int
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy