Does anyone know how to execute the following: The content of an element must be parsed and the sub-elements must be grouped by making a parallel query You should advance to the next item in the list only if the group query was previously completed
Element element = new Element();
element1.get(0) = urlA
element1.get(1) = urlB
element1.get(2) = urlC
List<Element> list = new ArrayList();
list.get(0); //consult in parallel [urlA, urlB, urlC]
//You must wait for the previous query to finish
list.get(1); //consult in parallel [urlX, urlY, urlZ]
I currently use rxjava-3.0.3
