reductor icon indicating copy to clipboard operation
reductor copied to clipboard

Redux for Android. Predictable state container library for Java/Android

Results 12 reductor issues
Sort by recently updated
recently updated
newest added

[Parallel test execution maxParallelForks](https://docs.gradle.org/current/userguide/performance.html#parallel_test_execution). Gradle can run multiple test cases in parallel by setting `maxParallelForks`. [Disable report generation](https://docs.gradle.org/current/userguide/performance.html#report_generation). We can conditionally disable it by setting `reports.html.required = false; reports.junitXml.required =...

I just curious, Does state have any variable number limitation? Can I unlimited add variable in single state file?

hi,first for you reductor share. we can subscribe the datas changes we can get notifiy. counterStore.subscribe(state -> System.out.println(state)); ok,it seems perfect,but when this happen . there are Activity Named A,Activity...

I plan to use dispatch action from a background service within a different thread. Is this implementation thread safe or I have to do it myself? Thanks.

Currently the lib throws exception if I use it with lombok. I suggest a reason in the preprocessor. It can find symbols defined with annotation Data, etc.

This helps communicate intention to all users of the library, but is particularly useful for those of us using Kotlin.

Hello, now I am using reductor for the android project. For the Store, I had no problem subscribing and canceling the subscription with the retrolambda, but when I use the...

Hi ! I'm trying to figure out how to make a reducer enhancer like the one shown here: http://redux.js.org/docs/recipes/ImplementingUndoHistory.html#second-attempt-writing-a-reducer-enhancer Do you think that is it possible to do with reductor...

The example doesn't compile. In [ReductorApp](https://github.com/Yarikx/reductor/blob/master/example/src/main/java/com/yheriatovych/reductor/example/ReductorApp.java), there's AppStateReducer (`com.yheriatovych.reductor.example.model.AppStateReducer`). The file doesn't exist.

Hello Great library. Wondering if there are any examples where you leverage the library's ability to do async actions?..i.e an action where the initiating view can listen to a callback...