Uses of Class
io.netty.buffer.CompositeByteBuf
Packages that use CompositeByteBuf
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Unix specific transport.
-
Uses of CompositeByteBuf in io.netty.buffer
Methods in io.netty.buffer that return CompositeByteBufModifier and TypeMethodDescriptionCompositeByteBuf.addComponent(boolean increaseWriterIndex, int cIndex, ByteBuf buffer) Add the givenByteBufon the specific index and increase thewriterIndexifincreaseWriterIndexistrue.CompositeByteBuf.addComponent(boolean increaseWriterIndex, ByteBuf buffer) CompositeByteBuf.addComponent(int cIndex, ByteBuf buffer) Add the givenByteBufon the specific index.CompositeByteBuf.addComponent(ByteBuf buffer) Add the givenByteBuf.CompositeByteBuf.addComponents(boolean increaseWriterIndex, ByteBuf... buffers) CompositeByteBuf.addComponents(boolean increaseWriterIndex, Iterable<ByteBuf> buffers) CompositeByteBuf.addComponents(int cIndex, ByteBuf... buffers) Add the givenByteBufs on the specific indexCompositeByteBuf.addComponents(int cIndex, Iterable<ByteBuf> buffers) Add the givenByteBufs on the specific index Be aware that this method does not increase thewriterIndexof theCompositeByteBuf.CompositeByteBuf.addComponents(ByteBuf... buffers) Add the givenByteBufs.CompositeByteBuf.addComponents(Iterable<ByteBuf> buffers) Add the givenByteBufs.CompositeByteBuf.addFlattenedComponents(boolean increaseWriterIndex, ByteBuf buffer) CompositeByteBuf.capacity(int newCapacity) CompositeByteBuf.clear()AbstractByteBufAllocator.compositeBuffer()AbstractByteBufAllocator.compositeBuffer(int maxNumComponents) ByteBufAllocator.compositeBuffer()Allocate aCompositeByteBuf.ByteBufAllocator.compositeBuffer(int maxNumComponents) Allocate aCompositeByteBufwith the given maximum number of components that can be stored in it.static CompositeByteBufUnpooled.compositeBuffer()Returns a new big-endian composite buffer with no components.static CompositeByteBufUnpooled.compositeBuffer(int maxNumComponents) Returns a new big-endian composite buffer with no components.AbstractByteBufAllocator.compositeDirectBuffer()AbstractByteBufAllocator.compositeDirectBuffer(int maxNumComponents) ByteBufAllocator.compositeDirectBuffer()Allocate a directCompositeByteBuf.ByteBufAllocator.compositeDirectBuffer(int maxNumComponents) Allocate a directCompositeByteBufwith the given maximum number of components that can be stored in it.UnpooledByteBufAllocator.compositeDirectBuffer(int maxNumComponents) AbstractByteBufAllocator.compositeHeapBuffer()AbstractByteBufAllocator.compositeHeapBuffer(int maxNumComponents) ByteBufAllocator.compositeHeapBuffer()Allocate a heapCompositeByteBuf.ByteBufAllocator.compositeHeapBuffer(int maxNumComponents) Allocate a heapCompositeByteBufwith the given maximum number of components that can be stored in it.UnpooledByteBufAllocator.compositeHeapBuffer(int maxNumComponents) CompositeByteBuf.consolidate()Consolidate the composedByteBufsCompositeByteBuf.consolidate(int cIndex, int numComponents) Consolidate the composedByteBufsCompositeByteBuf.discardReadBytes()CompositeByteBuf.discardReadComponents()Discard allByteBufs which are read.CompositeByteBuf.discardSomeReadBytes()CompositeByteBuf.ensureWritable(int minWritableBytes) CompositeByteBuf.getBytes(int index, byte[] dst) CompositeByteBuf.getBytes(int index, byte[] dst, int dstIndex, int length) CompositeByteBuf.getBytes(int index, OutputStream out, int length) CompositeByteBuf.getBytes(int index, ByteBuffer dst) CompositeByteBuf.markReaderIndex()CompositeByteBuf.markWriterIndex()CompositeByteBuf.readBytes(byte[] dst) CompositeByteBuf.readBytes(byte[] dst, int dstIndex, int length) CompositeByteBuf.readBytes(OutputStream out, int length) CompositeByteBuf.readBytes(ByteBuffer dst) CompositeByteBuf.readerIndex(int readerIndex) CompositeByteBuf.removeComponent(int cIndex) Remove theByteBuffrom the given index.CompositeByteBuf.removeComponents(int cIndex, int numComponents) Remove the number ofByteBufs starting from the given index.CompositeByteBuf.resetReaderIndex()CompositeByteBuf.resetWriterIndex()CompositeByteBuf.retain()CompositeByteBuf.retain(int increment) CompositeByteBuf.setBoolean(int index, boolean value) CompositeByteBuf.setByte(int index, int value) CompositeByteBuf.setBytes(int index, byte[] src) CompositeByteBuf.setBytes(int index, byte[] src, int srcIndex, int length) CompositeByteBuf.setBytes(int index, ByteBuffer src) CompositeByteBuf.setChar(int index, int value) CompositeByteBuf.setDouble(int index, double value) CompositeByteBuf.setFloat(int index, float value) CompositeByteBuf.setIndex(int readerIndex, int writerIndex) CompositeByteBuf.setInt(int index, int value) CompositeByteBuf.setLong(int index, long value) CompositeByteBuf.setMedium(int index, int value) CompositeByteBuf.setShort(int index, int value) CompositeByteBuf.setZero(int index, int length) CompositeByteBuf.skipBytes(int length) protected static CompositeByteBufAbstractByteBufAllocator.toLeakAwareBuffer(CompositeByteBuf buf) CompositeByteBuf.touch()CompositeByteBuf.writeBoolean(boolean value) CompositeByteBuf.writeByte(int value) CompositeByteBuf.writeBytes(byte[] src) CompositeByteBuf.writeBytes(byte[] src, int srcIndex, int length) CompositeByteBuf.writeBytes(ByteBuf src) CompositeByteBuf.writeBytes(ByteBuf src, int length) CompositeByteBuf.writeBytes(ByteBuf src, int srcIndex, int length) CompositeByteBuf.writeBytes(ByteBuffer src) CompositeByteBuf.writeChar(int value) CompositeByteBuf.writeDouble(double value) CompositeByteBuf.writeFloat(float value) CompositeByteBuf.writeInt(int value) CompositeByteBuf.writeLong(long value) CompositeByteBuf.writeMedium(int value) CompositeByteBuf.writerIndex(int writerIndex) CompositeByteBuf.writeShort(int value) CompositeByteBuf.writeZero(int length) Methods in io.netty.buffer with parameters of type CompositeByteBufModifier and TypeMethodDescriptionprotected static CompositeByteBufAbstractByteBufAllocator.toLeakAwareBuffer(CompositeByteBuf buf) -
Uses of CompositeByteBuf in io.netty.channel
Methods in io.netty.channel that return CompositeByteBufModifier and TypeMethodDescriptionPreferHeapByteBufAllocator.compositeBuffer()PreferHeapByteBufAllocator.compositeBuffer(int maxNumComponents) PreferHeapByteBufAllocator.compositeDirectBuffer()PreferHeapByteBufAllocator.compositeDirectBuffer(int maxNumComponents) PreferHeapByteBufAllocator.compositeHeapBuffer()PreferHeapByteBufAllocator.compositeHeapBuffer(int maxNumComponents) -
Uses of CompositeByteBuf in io.netty.channel.unix
Methods in io.netty.channel.unix that return CompositeByteBufModifier and TypeMethodDescriptionPreferredDirectByteBufAllocator.compositeBuffer()PreferredDirectByteBufAllocator.compositeBuffer(int maxNumComponents) PreferredDirectByteBufAllocator.compositeDirectBuffer()PreferredDirectByteBufAllocator.compositeDirectBuffer(int maxNumComponents) PreferredDirectByteBufAllocator.compositeHeapBuffer()PreferredDirectByteBufAllocator.compositeHeapBuffer(int maxNumComponents)