builder = builder.addBlockIds(block_ids[i]);
}
for (int i=0; i< tuple_offsets.length; i++){
builder = builder.addTupleOffsets(tuple_offsets[i]);
}
UnevictDataRequest request = builder.build();
try {
this.channels[remote_site_id].unevictData(new ProtoRpcController(), request, this.unevictCallback);
if (trace.val) {
LOG.trace(String.format("Sent unevict message request to remote hstore site %d from base site %d",
remote_site_id, this.hstore_site.getSiteId()));
LOG.trace(String.format("Sent %s to %s",
request.getClass().getSimpleName(),
HStoreThreadManager.formatSiteName(remote_site_id)));
}
} catch (RuntimeException ex) {
// Silently ignore these errors...
ex.printStackTrace();