RpcOptions options = rpcManager.getRpcOptionsBuilder(ResponseMode.WAIT_FOR_VALID_RESPONSE)
.timeout(configuration.remoteCallTimeout(), TimeUnit.MILLISECONDS).responseFilter(filter).build();
return rpcManager.invokeRemotely(null, clusteredGetCommand, options).values();
} catch (Exception e) {
log.errorDoingRemoteCall(e);
throw new CacheLoaderException(e);
}
}