Am I using flatMap correctly to merge results from multiple API calls?
问题 I want to make multiple API calls (with three different queries) and merge the results and then display them in onNext() . It is working but I am concerned that flatMap is not ideal for this. @GET("www.examle.com/api/data/") Observable<WebResultsResponse> getWebResults(@Query("param1") String query); ----- private List<WebResult> resultsList; private void requestWebResults(String query) { resultsList.clear(); final Observable<List<WebResult>> observable = MainApplication.apiProvider