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
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
"JsonEOFException: Unexpected end-of-input" when sending a stream to a Rxjava2 endpoint
I'm trying to work out how to call to an endpoint that accepts a @Body parameter of Flowable<Integer>, to subscribe it to process the incoming stream (using Micronaut and the RxJava framework). ...

Jim Renwick
Votes: 0
Answers: 1