grox icon indicating copy to clipboard operation
grox copied to clipboard

Grox helps to maintain the state of Java / Android apps.

Results 5 grox issues
Sort by recently updated
recently updated
newest added

Currently the `oldState` will be interpreted as nullable in Kotlin like: ```kotlin class TestAction: Action { override fun newState(oldState: String?): String { // ... } } ``` This PR adds...

Grox store don't call any listener / "subscriber of the states(store)" when an error happens during the action's newState method. The errors seem to just be swallowed by Grox. Here...

bug

Would be nice to use https://codecov.io/ instead of coverall, at least give it a try.

`onStateChanged` method from a `StateChangeListener ` can be called after it has `unsubscribe `d. Steps: 1. We have a Store **S** and Listener **L**. 2. In `Thread 1`, **S** starts...