FlowReduxStateMachineFactory

@ExperimentalCoroutinesApi
abstract class FlowReduxStateMachineFactory<S : Any, A : Any>(initialState: () -> S)

Constructors

Link copied to clipboard
constructor(initialState: S)
constructor(initialState: () -> S)

Functions

Link copied to clipboard
fun launchIn(scope: CoroutineScope): FlowReduxStateMachine<StateFlow<S>, A>