python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Mutual updates don't work in RxJava while were working in conventional listeners
I need to make two values be in sync, but to allow any of them to be changed. In plain EDT listeners I was able just to guard changes with boolean flag. Each change is done only if flug is down and wh...
Dims
Votes: 0
Answers: 0
What would cause SingleEmitter.onSuccess() to generate a NoSuchElement exception?
I have a Single flow organized like this:
getSomething() // returns Single<>
.flatMap(something -> {
// various things
return Single.defer( () -> {
// various other things
...
Hoobajoob
Votes: 0
Answers: 1
How can I retry to connect with the server using RXJava and Retrofit?
Code
new Retrofit.Builder().baseUrl(Constants.BASE_URL_FILES).addCallAdapterFactory(RxJava3CallAdapterFactory.create()).addConverterFactory(GsonConverterFactory.create()).build().create(RetrofitInterf...
Taha Sami
Votes: 0
Answers: 2
rxjava chain observalbes dynamiclly
I have a chained observable that I created like this:
Disposable disposable = currentUsedAdapter.connect(ip)
.observeOn(AndroidSchedulers.mainThread())
.concatMap(fallbackAdapter(Proto...

StackerSapper
Votes: 0
Answers: 1