Top "Rx-android" questions

RxJava bindings for Android

Use cases for RxJava schedulers

In RxJava there are 5 different schedulers to choose from: immediate(): Creates and returns a Scheduler that executes work immediately on …

java multithreading thread-safety rx-java rx-android
Android RX - Observable.timer only firing once

So I am trying to create an observable which fires on a regular basis, but for some reason which I …

java android rx-android
How do I handle exceptions in map() in an Observable in RxJava

I want to do this: Observable.just(bitmap) .map(new Func1<Bitmap, File>() { @Override public File call(Bitmap …

java android rx-java rx-android
RxJava: Error occurred when trying to propagate error to Observer.onError

I am getting a IllegalStateException error in the Rx Library and don't know exactly where the root of the issue …

android exception rx-java onerror rx-android
rxjava merge observables of different type

I'm new to rxjava. I need to combine two observables that emit objects of different type. Something like Observable<…

asynchronous observable rx-java rx-android
RxJava flatMapIterable with a Single

I'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
Process Observable on background thread

I am using RxAndroid for stream operations. In my real use-case, i am fetching a list from the server (using …

rx-java rx-android
How to use "if-else" in RX java chain?

I am a newer on RXJava/RXAndroid. I want to implement this case: chose different way based on some condition …

java android rx-java rx-android rx-java2
RxJava Combine Sequence Of Requests

The Problem I have two Apis. Api 1 gives me a List of Items and Api 2 gives me more detailed Information …

java android rx-java reactive-programming rx-android
Retrofit API call receives "HTTP FAILED: java.io.IOException: Canceled"

Can't figure out why is this happening. Neither one of rx callbacks (onCompleted(), onError(), onNext()) not gets triggered by my …

android rx-java retrofit2 okhttp rx-android