Uses of Interface
org.flux.store.api.Reducer
-
Packages that use Reducer Package Description org.flux.store.api org.flux.store.main org.flux.store.utils -
-
Uses of Reducer in org.flux.store.api
Methods in org.flux.store.api with parameters of type Reducer Modifier and Type Method Description voidStore. replaceReducer(Reducer<T> newReducer) -
Uses of Reducer in org.flux.store.main
Methods in org.flux.store.main with parameters of type Reducer Modifier and Type Method Description DuxSliceBuilder<T>DuxSliceBuilder. addReducer(String type, Reducer<T> reducer)voidDuxStore. replaceReducer(Reducer<T> newReducer)DuxStoreBuilder<T>DuxStoreBuilder. setReducer(Reducer<T> reducer)Method parameters in org.flux.store.main with type arguments of type Reducer Modifier and Type Method Description protected static <T extends State>
DuxSlice<T>DuxSlice. createSlice(T initialState, Map<String,Reducer<T>> reducers, List<Consumer<T>> subscribers, Middleware<T> middleware, Boolean asyncFlag, Boolean autoBackup, String backupPath)Constructors in org.flux.store.main with parameters of type Reducer Constructor Description DuxStore(T initialState, Reducer<T> reducer)DuxStore(T initialState, Reducer<T> reducer, Middleware<T> middleware) -
Uses of Reducer in org.flux.store.utils
Methods in org.flux.store.utils that return Reducer Modifier and Type Method Description static <T extends State>
Reducer<T>Utilities. combineReducer(Reducer<T>... reducers)Methods in org.flux.store.utils with parameters of type Reducer Modifier and Type Method Description static <T extends State>
Reducer<T>Utilities. combineReducer(Reducer<T>... reducers)
-