if (mbrs.size() > 1) log.error("No replies to call " + command);
return GravitateResult.noDataFound();
}
// test for and remove exceptions
GravitateResult result = GravitateResult.noDataFound();
for (Object o : resps)
{
if (o instanceof Throwable)
{
if (log.isDebugEnabled())
{
log.debug("Found remote Throwable among responses - removing from responses list", (Exception) o);
}
}
else if (o != null)
{
result = (GravitateResult) o;
if (result.isDataFound())
{
break;
}
}
else if (!configuration.isUseRegionBasedMarshalling())