python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
handle checked exception in RxJava 2
I have some issue when I try to catch exception.
I have some method like this (legacy method) :
public String myLegacyMethod throws MyException() {
//do something or throw MyException in case of erro...
chavalife17
Votes: 0
Answers: 1
RxJava android Flowable retryWhen doesn't calling onError when occured error at last retry
my Flowable is returned from Retrofit ApiService, i attempt the below code to implement error retry mechanism, i wish it can call onError function when occurred error at last retry.
flowable.retryW...
MayGodBlessYou
Votes: 0
Answers: 1
How can I recheck every 1 second using RxJava?
Is there any method in RxJava to recheck if the variable is null or not, For example, Recheck every 1 second or when the value is given to the variable?
String x;
Completable.create(emitter -> {
...
E3219
Votes: 0
Answers: 1
How to unregister two vertx consumers and returns an rxjava completable?
I need a small help with Rxjava . currently I have two hash maps . Each hash map contains vertex message consumers against a subscription key. I want to return a completable object only if I am able t...
prasanth
Votes: 0
Answers: 1