Wait for Firestore queries to complete
问题 I am currently trying to run multiple queries in firestore and want to wait for them to all complete before executing the next code. I've read up on several possible avenues but I have yet to find a good Android example. public HashMap<String,Boolean> multipleQueries(String collection, String field, final ArrayList<String> criteria) { HashMap<String,Boolean> resultMap = new HashMap<>(); for (int i = 0; i < criteria.size(); i++){ final int index = i; db.collection(collection).whereEqualTo