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)
RxJava 3: How to use Futures with Observables/Singles
I'm relatively new to RxJava and I'm curious about how to use Futures with RxJava's Observable and/or Single. What I'm trying to make is a system to connect to a MongoDB database and load MongoDB coll...
Atlas
Votes: 0
Answers: 0
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
RxJava: How to subscribe to 2 observables in order and merge their result?
To set the stage, I have 2 network calls, the 2nd one depends on the result of the 1st.
fun netCall1(): Observable<Data1>{...}
fun netCall2(data: Data1): Observable<Data2>{...}
How do I ...
Some Noob Student
Votes: 0
Answers: 0
Unwanted garbage collection while calling from the method that ends
Spring Boot app, where Spring Boot's scheduled method calls RX method (rxjava3) to do the long job (in separate thread pool).
@Scheduled(fixedDelay = ONE_SECOND)
public void init() {
process().su...
ses
Votes: 0
Answers: 0