for (IoBuffer buffer : this.bufferList) {
byte[] ba = buffer.array();
System.arraycopy(ba, 0, buf, offset, ba.length);
offset += ba.length;
}
BinaryGetMultiCommand resultCommand = new BinaryGetMultiCommand(
null, CommandType.GET_MANY, new CountDownLatch(1));
resultCommand.setIoBuffer(IoBuffer.wrap(buf));
return resultCommand;
}