StoreConfiguration
data class StoreConfiguration<S : MVIState>(val initial: S, val allowIdleSubscriptions: Boolean, val parallelIntents: Boolean, val actionShareBehavior: ActionShareBehavior, val intentCapacity: Int, val onOverflow: BufferOverflow, val debuggable: Boolean, val coroutineContext: CoroutineContext, val logger: StoreLogger, val atomicStateUpdates: Boolean, val name: String?)
A configuration of the Store. Please see StoreConfigurationBuilder for details on the meaning behind the properties listed here
Parameters
initial
The initial state the Store will have.
Constructors
Link copied to clipboard
constructor(initial: S, allowIdleSubscriptions: Boolean, parallelIntents: Boolean, actionShareBehavior: ActionShareBehavior, intentCapacity: Int, onOverflow: BufferOverflow, debuggable: Boolean, coroutineContext: CoroutineContext, logger: StoreLogger, atomicStateUpdates: Boolean, name: String?)