Container

A simple class that delegates to the store property.

Properties

Link copied to clipboard
abstract override val store: Store<S, I, A>

A Store that is used with the container

Functions

Link copied to clipboard
inline suspend fun <I : MVIIntent> Container<*, I, *>.emit(first: I, vararg other: I)

Alias for Store.emit

Link copied to clipboard
inline fun <I : MVIIntent> Container<*, I, *>.intent(first: I, vararg other: I)

Alias for Store.intent

Link copied to clipboard
inline fun <S : MVIState, I : MVIIntent, A : MVIAction> ImmutableContainer<S, I, A>.lazyStore(initial: S, mode: LazyThreadSafetyMode = LazyThreadSafetyMode.SYNCHRONIZED, crossinline configure: BuildStore<S, I, A>): Lazy<Store<S, I, A>>
inline fun <S : MVIState, I : MVIIntent, A : MVIAction> ImmutableContainer<S, I, A>.lazyStore(initial: S, scope: CoroutineScope, mode: LazyThreadSafetyMode = LazyThreadSafetyMode.SYNCHRONIZED, crossinline configure: BuildStore<S, I, A>): Lazy<Store<S, I, A>>

Alias for pro.respawn.flowmvi.dsl.lazyStore (with a scope)

Link copied to clipboard
inline fun <S : MVIState, I : MVIIntent, A : MVIAction> ImmutableContainer<S, I, A>.store(initial: S, crossinline configure: BuildStore<S, I, A>): Store<S, I, A>
inline fun <S : MVIState, I : MVIIntent, A : MVIAction> ImmutableContainer<S, I, A>.store(initial: S, scope: CoroutineScope, crossinline configure: BuildStore<S, I, A>): Store<S, I, A>