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

commonMain.pro.respawn.flowmvi.api.Provider.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

/**
 * An entity that handles [MVIIntent]s, produces [actions] and manages [states].
 * Provider is available when you call [Store.subscribe] and allows you to consume your [states] and [actions]
 * Provider is a:
 * * [StateProvider]
 * * [IntentReceiver]
 * * [ActionProvider]
 */
public interface Provider :
    StateProvider,
    IntentReceiver,
    ActionProvider