コード例 #1
0
 public byte[] getRange(byte[] key, long start, long end) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.getrange(key, start, end));
       return null;
     }
     return client.getrange(key, start, end).data();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }