Top "Rx-java2" questions

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.

Is there something like Single.empty()

I'm in the process of migrating from Rx 1 to Rx 2 and suddenly while reading through posts I found out that …

java rx-java rx-java2
Subscribewith Vs subscribe in RxJava2(Android)?

When to call the subscribeWith method rather than plain subscribe? And what is the use case? compositeDisposable.add(get() .observeOn(…

android rx-java reactive-programming rx-java2
Cannot resolve symbol AndroidSchedulers

I'm using version 2.0.0 of RxJava, and it seems like I have no access to AndroidSchedulers. I'm unable to get access …

java android rx-java rx-java2
Rxandroid What's the difference between SubscribeOn and ObserveOn

I am just learning Rx-java and Rxandroid2 and I am just confused what is the major difference between in SubscribeOn …

java android rx-java rx-android rx-java2
Difference between RxJava API and the Java 9 Flow API

It seems on every iteration of Java for the last few major releases, there are consistently new ways to manage …

java rx-java rx-java2 java-9
How to handel no results with Android Room and RxJava 2?

I have database with table contact and I want to check if there is contact with some phone number. @Query("…

android rx-java2 android-room
Prevent OnErrorNotImplementedException

I want to achieve that if i call the Obervable.subscribe(Action1) method, it does not throw OnErrorNotImplementedException anywhere, but …

android rx-java rx-java2 subscribe
Filter list of objects in RxJava

I am trying to filter the list on the basis of it's property. For example, Sensors class has a property …

android rx-java reactive-programming rx-java2 rx-android
How to convert rxJava2's Observable to Completable?

I have Observable stream, and I want to convert it to Completable, how I could do that?

java observable rx-java reactive-programming rx-java2
Best practice for disposing Completable, Single, Maybe and terminating Observables in RxJava

I'm asking this from an Android perspective, but this should apply to RxJava in general. As a best practice, should …

android rx-java dispose rx-java2