netty5/buffer/src
Scott Mitchell f812180c2d ByteString arrayOffset method
Motivation:
The ByteString class currently assumes the underlying array will be a complete representation of data. This is limiting as it does not allow a subsection of another array to be used. The forces copy operations to take place to compensate for the lack of API support.

Modifications:
- add arrayOffset method to ByteString
- modify all ByteString and AsciiString methods that loop over or index into the underlying array to use this offset
- update all code that uses ByteString.array to ensure it accounts for the offset
- add unit tests to test the implementation respects the offset

Result:
ByteString and AsciiString can represent a sub region of a byte[].
2015-04-24 18:54:01 -07:00
..
main/java/io/netty/buffer ByteString arrayOffset method 2015-04-24 18:54:01 -07:00
test/java/io/netty/buffer [#3623] CompositeByteBuf.iterator() should return optimized Iterable 2015-04-20 10:45:37 +02:00