Predictable state container based on Redux library.
interface RAction |
|
class ReduxStore<S : Any, A : RAction> : ObservableState<S>
A class implementing redux pattern backed by the Redux Kotlin library. |
typealias ActionCreator<A, S> = (Dispatch<A>, GetState<S>) -> Unit |
|
typealias Dispatch<A> = (A) -> Unit |
|
typealias GetState<S> = () -> S |
|
typealias ReducerFun<S, A> = (S, A) -> S |
fun <S : Any, A : RAction> createReduxStore(reducer: ReducerFun<S, A>, initialState: S, vararg middlewares: <ERROR CLASS><S>): ReduxStore<S, A> fun <S : Any, A : RAction> createReduxStore(reducer: <ERROR CLASS><S, A>, initialState: S, vararg middlewares: dynamic): ReduxStore<S, A>
An inline helper function for creating Redux store. |