Example usage for Java io.netty.buffer CompositeByteBuf fields, constructors, methods, implement or subclass
The text is from its open source code.
CompositeByteBuf | addComponent(int cIndex, ByteBuf buffer) Add the given ByteBuf on the specific index. |
CompositeByteBuf | addComponent(boolean increaseWriterIndex, ByteBuf buffer) Add the given ByteBuf and increase the writerIndex if increaseWriterIndex is true . |
CompositeByteBuf | addComponent(ByteBuf buffer) Add the given ByteBuf . |
CompositeByteBuf | addComponents(ByteBuf... buffers) Add the given ByteBuf s. |
CompositeByteBuf | addComponents(Iterable Add the given ByteBuf s. |
CompositeByteBuf | addComponents(boolean increaseIndex, int cIndex, Iterable |
CompositeByteBuf | addComponents(boolean increaseWriterIndex, ByteBuf... buffers) Add the given ByteBuf s and increase the writerIndex if increaseWriterIndex is true . |
CompositeByteBuf | addComponents(boolean increaseWriterIndex, Iterable Add the given ByteBuf s and increase the writerIndex if increaseWriterIndex is true . |
CompositeByteBuf | addComponents(int cIndex, ByteBuf... buffers) Add the given ByteBuf s on the specific index Be aware that this method does not increase the writerIndex of the CompositeByteBuf . |
CompositeByteBuf | addComponents(int cIndex, Iterable Add the given ByteBuf s on the specific index Be aware that this method does not increase the writerIndex of the CompositeByteBuf . |
int | capacity() |
CompositeByteBuf | capacity(int newCapacity) |
ByteBuf | component(int cIndex) Return the ByteBuf on the specified index |
ByteBuf | copy(int index, int length) |
byte | getByte(int index) |
boolean | isReadable() |
int | numComponents() Return the current number of ByteBuf 's that are composed in this instance |
ByteBuf | order(ByteOrder endianness) |
int | readableBytes() |
byte | readByte() |
CompositeByteBuf | readerIndex(int readerIndex) |
int | readerIndex() |
long | readLong() |
boolean | release() |
CompositeByteBuf | setBytes(int index, ByteBuffer src) |
CompositeByteBuf | setBytes(int index, ByteBuf src) |
CompositeByteBuf | setBytes(int index, byte[] src) |
ByteBuf | slice(int index, int length) |
String | toString(Charset charset) |
CompositeByteBuf | writeByte(int value) |
CompositeByteBuf | writerIndex(int writerIndex) |
int | writerIndex() |