Entry<String, Item>[] nodeEntries = cloudCollection.getAll();
// Dispatch to the hosts hosting these nodes
List<Entry<String, Item>> entries = new ArrayList<Entry<String,Item>>();
for (String host: hosts(nodeEntries)) {
ItemCollection processCollection = processCollection(host);
for (Entry<String, Item> remoteEntry: processCollection.getAll()) {
entries.add(remoteEntry);
}
break;
}