예제 #1
0
 /**
  * send all the data to other servers
  *
  * @param bucketNo
  * @param blockNo dbIf's id
  * @param offset offset in the dbIf
  * @param size size_string
  */
 @Override
 public byte[] migration(String bucketNo, String sizetype, String blockNo, int offset, int size) {
   int buckNum = Integer.parseInt(bucketNo);
   return mdbManager.duplicateDirectBuffer(buckNum, sizetype, blockNo, offset, size);
 }