public static Result get(final ClientService.BlockingInterface client, final byte[] regionName,
final Get get, PayloadCarryingRpcController controller) throws IOException {
GetRequest request =
RequestConverter.buildGetRequest(regionName, get);
try {
GetResponse response = client.get(controller, request);
if (response == null) return null;
return toResult(response.getResult());
} catch (ServiceException se) {
throw getRemoteException(se);
}
}