@Override
public ByteBuf getBytes(int index, byte[] dst, int dstIndex, int length) {
ByteBuf dstBuf = Unpooled.wrappedBuffer(dst);
int min = Math.min(dst.length, capacity);
return getBytes(0, dstBuf, index, min);
}
The last line index should be dstIndex?