ByteBuf.getBytes

Transfers this buffer's data to the specified destination starting at the specified absolute {@code index} until the destination's position reaches its limit. This method does not modify {@code readerIndex} or {@code writerIndex} of this buffer while the destination's {@code position} will be increased.

@throws IndexOutOfBoundsException if the specified {@code index} is less than {@code 0} or if {@code index + dst.remaining()} is greater than {@code this.capacity}

Meta