anything related to RxJava2 – The new implementation of the RxJava Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.
In RxJava 1, there was CompositeSubscription, but that is not present in RxJava2, There is something CompositeDisposable in rxJava2. How do …
java android rx-java rx-java2 rx-androidI am not getting the reason to use RxJava in Android and LiveData from Android Architectural Components.It would be …
android rx-java2 rx-android reactive android-architecture-componentsI'm going to send a simple get method to my server(it is Rails app) and get the result using …
retrofit rx-java retrofit2 rx-android rx-java2I've upgraded to Android Studio 3.1 today, which seems to have added a few more lint checks. One of these lint …
android android-studio rx-java2 lint android-studio-3.1I have two Completable. I would like to do following scenario: If first Completable gets to onComplete , continue with second …
java rx-java rx-java2I have a BehaviorSubject that I would like to reset - by that I mean I want the latest value …
stream rx-java reactive-programming rx-java2I am encountering a RuntimeException when attempting to run JUnit tests for a presenter that is using observeOn(AndroidSchedulers.mainThread()). …
android unit-testing junit rx-java rx-java2As I understand RxJava2 values.take(1) creates another Observable that contains only one element from the original Observable. Which MUST …
java observable rx-java2 takeCan anyone please explain the difference between Observable, Completable and Single in RxJava with clear examples? In which scenario we …
rx-java rx-java2I'm trying to tidy up my code a little, and Single is looking like a good choice for me as …
android rx-android rx-java2