RxJava bindings for Android
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-androidSo I am trying to create an observable which fires on a regular basis, but for some reason which I …
java android rx-androidI want to do this: Observable.just(bitmap) .map(new Func1<Bitmap, File>() { @Override public File call(Bitmap …
java android rx-java rx-androidI 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-androidI'm new to rxjava. I need to combine two observables that emit objects of different type. Something like Observable<…
asynchronous observable rx-java rx-androidI'm trying to tidy up my code a little, and Single is looking like a good choice for me as …
android rx-android rx-java2I am using RxAndroid for stream operations. In my real use-case, i am fetching a list from the server (using …
rx-java rx-androidI 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-java2The 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-androidCan'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