Uses of Class
org.flux.store.api.Action
-
Packages that use Action Package Description org.flux.store.api org.flux.store.main org.flux.store.utils -
-
Uses of Action in org.flux.store.api
Methods in org.flux.store.api with parameters of type Action Modifier and Type Method Description voidStore. dispatch(Action action)TReducer. reduce(Action action, T state)voidMiddleware. run(Store<T> store, Consumer<Action> next, Action action)Method parameters in org.flux.store.api with type arguments of type Action Modifier and Type Method Description voidThunk. process(Consumer<Action> dispatch, Supplier<T> getState)voidMiddleware. run(Store<T> store, Consumer<Action> next, Action action) -
Uses of Action in org.flux.store.main
Methods in org.flux.store.main with parameters of type Action Modifier and Type Method Description voidDuxStore. dispatch(Action action) -
Uses of Action in org.flux.store.utils
Methods in org.flux.store.utils that return Action Modifier and Type Method Description static <T> Action<T>Utilities. actionCreator(String actionType, T payload)ActionTimeTravel. getLatestAction()Methods in org.flux.store.utils that return types with arguments of type Action Modifier and Type Method Description List<Action>TimeTravel. getActionHistory()List<Action>TimeTravel. getActionToRecreate()Methods in org.flux.store.utils with parameters of type Action Modifier and Type Method Description voidTimeTravel. recordChange(Action action, T newState)Constructor parameters in org.flux.store.utils with type arguments of type Action Constructor Description TimeTravel(T snapshot, List<Action> actions, Integer index)
-