GRouslan

Results 4 comments of GRouslan

Same problem. Version 1.3

Yes, I need an async stream. I did not paid much attention and used the state from function parameter. So now I'm getting current state my self, but it is...

``` void onStateUpdate(AppState state) { state = StoreHolder.getStore().state; if (state.updates.isEmpty) return; for (RCommandSimple mine in state.updates) { mine(); } StoreHolder.getStore().dispatch(clearUpdates()); } ``` This is a function to subscribe to store...

> onStateUpdate is the onData parameter when you subscribe, i.e. store.stream.listen? Yes, you are correct. I meant that in original redux the listener function has no arguments, and you should...