for (Future<Map<Address, Response>> future : futures) {
rspList.putAll(future.get());
}
checkRemoteResponse(null, cmd, rspList);
for (Map.Entry<Address, Response> e : rspList.entrySet()) {
SuccessfulResponse value = (SuccessfulResponse) e.getValue();
recoveryInfo.put(e.getKey(), (Map<String, CacheView>) value.getResponseValue());
}
// get the full set of caches
Set<String> cacheNames = new HashSet<String>();
for (Map<String, CacheView> m : recoveryInfo.values()) {