ContainerViewModel

open class ContainerViewModel<T : Container<S, I, A>, S : MVIState, I : MVIIntent, A : MVIAction>(val container: T, start: Boolean = true) : ViewModel, Store<S, I, A> , Container<S, I, A>

A class that wraps a container in a ViewModel, and (if start is true) starts the container's store.

The store is started at creation using a viewModelScope.

Constructors

Link copied to clipboard
constructor(container: T, start: Boolean = true)

Properties

Link copied to clipboard
Link copied to clipboard
open override val isActive: Boolean
Link copied to clipboard
open override val isStarted: Boolean
Link copied to clipboard
open override val name: String?
Link copied to clipboard
open override val states: StateFlow<S>
Link copied to clipboard
open override val store: Store<S, I, A>

Functions

Link copied to clipboard
expect open fun addCloseable(closeable: AutoCloseable)
expect fun addCloseable(key: String, closeable: AutoCloseable)
Link copied to clipboard
open suspend override fun awaitStartup()
Link copied to clipboard
open suspend override fun awaitUntilClosed()
Link copied to clipboard
expect open override fun close()
Link copied to clipboard
open suspend override fun closeAndWait()
Link copied to clipboard
open suspend override fun emit(intent: I)
Link copied to clipboard
expect fun <T : AutoCloseable> getCloseable(key: String): T?
Link copied to clipboard
open override fun intent(intent: I)
Link copied to clipboard
open override fun start(scope: CoroutineScope): StoreLifecycle
Link copied to clipboard
open override fun CoroutineScope.subscribe(block: suspend Provider<S, I, A>.() -> Unit): Job