Package-level declarations
Types
An entity that can provide MVIActions through the actions flow. This flow may behave differently depending on ActionShareBehavior chosen. This is mainly implemented by the Store and exposed through Provider (Store.subscribe)
An entity that can receive different actions and then possibly emit them as an ActionProvider. Actions are collected by the ActionConsumer. This is most often implemented by a Store and exposed through PipelineContext
An class representing how MVIAction sharing will be handled in the ActionProvider. There are 4 possible behaviors, which will be different depending on your use-case. When in doubt, use the default one, and change if you have issues.
Marker annotation for store apis that are not thread-safe
An empty state for stores that do not have a state.
A DSL marker for the FlowMVI DSL. Defines a contract for calling the DSL functions.
StateReceiver version that can only accept immediate state updates. It is recommended to use StateReceiver and its methods if possible. See the method docs for details
A Store that does not allow sending intents.
A single, one-shot, side-effect of processing an MVIIntent, sent to ActionConsumer, processed by ActionProvider and handled by ActionReceiver.
User interaction or other event that is sent to and processed by IntentReceiver.
The state of the StateProvider, most likely a Store. State updates are sent to the StateReceiver and consumed by the StateConsumer.
PipelineContext is an entity that exposes the underlying logic of the Store to its StorePlugins.
An entity that can render states coming from a StateProvider. Most likely, a subscriber of the Store.
An entity that exposes states and allows StateConsumers to subscribe to them. Most often accessed through a Store as a Provider.
An entity that handles MVIState updates. This entity modifies the state of the StateProvider. This is most often implemented by a Store and exposed through PipelineContext.
Defines available strategies Store can use when a state operation (StateReceiver.updateState or StateReceiver.withState) is requested.
A central business logic unit for handling MVIIntents, MVIActions, and MVIStates. Usually not subclassed but used with a corresponding builder (see pro.respawn.flowmvi.dsl.store).
A configuration of the Store.
A subscriber lifecycle is the lifecycle of the Consumer. This is usually the UI lifecycle.
Subscription mode of the UI element with a dedicated lifecycle. An implementation of the SubscriberLifecycle must follow the contract outlined for each mode.
An exception that has happened in the Store that cannot be recovered from.