Yaroslav Heriatovych

Results 16 comments of Yaroslav Heriatovych

We use RxJava a lot in [Attendify](http://attendify.com/) for our Android App.

Hi @brownpixel That is a good point, hope to find some time and add that topic as a wiki page. But briefly: There is no such thing as async action...

@brownpixel If I understood the idea it returns callback when you dispatch an action, am I correct? If so, similar approach is used in some redux libraries. By default `dispatch`...

Wow, that's surprising. It's actually compiled with retrolambda into a single jar, but if it creates such problems I might just undo all the lambdas in the code. @wjs9715 @SaeedMasoumi...

Ok, I found how to reproduce it. It indeed happens for some lambdas ONLY with new Android Java 8 desugaring. Seems like Google desugar also process libraries and change some...

HI @blackvvine, That crash indeed looks very strange for me. Cannot tell you why it might be happening as reductor does not include any native code or any interaction with...

Interesting. Do you have a minimal reproducible project to try this? I would like to find a real cause of this problem but haven't seen such stack traces for my...

Hi. Enhancers (as they are implemented in Redux.js) are not implemented due to static nature of Java. Reductor support middlewares out of the box (which is 90% of use-cases where...

Did you try to run a build? The IDE may show that it doesn't exist the first time you import the project. That's because that class is generated during annotation...

Hi @helzgate. There are already a couple of modules to leverage RxJava with Reductor: - Modules 'reductor-rxjava' and 'reductor-rxjava2'. They allow observing `Store` (and `Cursor`) as Observable (or Flowable for...