Package | Description |
---|---|
io.netty.buffer |
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
|
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
AdvancedLeakAwareCompositeByteBuf |
(package private) class |
SimpleLeakAwareCompositeByteBuf |
(package private) class |
WrappedCompositeByteBuf |
Modifier and Type | Field and Description |
---|---|
private CompositeByteBuf |
WrappedCompositeByteBuf.wrapped |
Modifier and Type | Method and Description |
---|---|
CompositeByteBuf |
CompositeByteBuf.addComponent(boolean increaseWriterIndex,
ByteBuf buffer)
|
CompositeByteBuf |
WrappedCompositeByteBuf.addComponent(boolean increaseWriterIndex,
ByteBuf buffer) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponent(boolean increaseWriterIndex,
ByteBuf buffer) |
CompositeByteBuf |
CompositeByteBuf.addComponent(boolean increaseWriterIndex,
int cIndex,
ByteBuf buffer)
Add the given
ByteBuf on the specific index and increase the writerIndex
if increaseWriterIndex is true . |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponent(boolean increaseWriterIndex,
int cIndex,
ByteBuf buffer) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponent(boolean increaseWriterIndex,
int cIndex,
ByteBuf buffer) |
CompositeByteBuf |
CompositeByteBuf.addComponent(ByteBuf buffer)
Add the given
ByteBuf . |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponent(ByteBuf buffer) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponent(ByteBuf buffer) |
CompositeByteBuf |
CompositeByteBuf.addComponent(int cIndex,
ByteBuf buffer)
Add the given
ByteBuf on the specific index. |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponent(int cIndex,
ByteBuf buffer) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponent(int cIndex,
ByteBuf buffer) |
CompositeByteBuf |
CompositeByteBuf.addComponents(boolean increaseWriterIndex,
ByteBuf... buffers)
|
CompositeByteBuf |
WrappedCompositeByteBuf.addComponents(boolean increaseWriterIndex,
ByteBuf... buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(boolean increaseWriterIndex,
ByteBuf... buffers) |
CompositeByteBuf |
CompositeByteBuf.addComponents(boolean increaseWriterIndex,
java.lang.Iterable<ByteBuf> buffers)
|
CompositeByteBuf |
WrappedCompositeByteBuf.addComponents(boolean increaseWriterIndex,
java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(boolean increaseWriterIndex,
java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
CompositeByteBuf.addComponents(ByteBuf... buffers)
Add the given
ByteBuf s. |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponents(ByteBuf... buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(ByteBuf... buffers) |
CompositeByteBuf |
CompositeByteBuf.addComponents(int cIndex,
ByteBuf... buffers)
Add the given
ByteBuf s on the specific index |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponents(int cIndex,
ByteBuf... buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(int cIndex,
ByteBuf... buffers) |
CompositeByteBuf |
CompositeByteBuf.addComponents(int cIndex,
java.lang.Iterable<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 |
WrappedCompositeByteBuf.addComponents(int cIndex,
java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(int cIndex,
java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
CompositeByteBuf.addComponents(java.lang.Iterable<ByteBuf> buffers)
Add the given
ByteBuf s. |
CompositeByteBuf |
WrappedCompositeByteBuf.addComponents(java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.addComponents(java.lang.Iterable<ByteBuf> buffers) |
CompositeByteBuf |
CompositeByteBuf.capacity(int newCapacity) |
CompositeByteBuf |
WrappedCompositeByteBuf.capacity(int newCapacity) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.capacity(int newCapacity) |
CompositeByteBuf |
CompositeByteBuf.clear() |
CompositeByteBuf |
WrappedCompositeByteBuf.clear() |
CompositeByteBuf |
AbstractByteBufAllocator.compositeBuffer() |
CompositeByteBuf |
ByteBufAllocator.compositeBuffer()
Allocate a
CompositeByteBuf . |
static CompositeByteBuf |
Unpooled.compositeBuffer()
Returns a new big-endian composite buffer with no components.
|
CompositeByteBuf |
AbstractByteBufAllocator.compositeBuffer(int maxNumComponents) |
CompositeByteBuf |
ByteBufAllocator.compositeBuffer(int maxNumComponents)
Allocate a
CompositeByteBuf with the given maximum number of components that can be stored in it. |
static CompositeByteBuf |
Unpooled.compositeBuffer(int maxNumComponents)
Returns a new big-endian composite buffer with no components.
|
CompositeByteBuf |
AbstractByteBufAllocator.compositeDirectBuffer() |
CompositeByteBuf |
ByteBufAllocator.compositeDirectBuffer()
Allocate a direct
CompositeByteBuf . |
CompositeByteBuf |
AbstractByteBufAllocator.compositeDirectBuffer(int maxNumComponents) |
CompositeByteBuf |
ByteBufAllocator.compositeDirectBuffer(int maxNumComponents)
Allocate a direct
CompositeByteBuf with the given maximum number of components that can be stored in it. |
CompositeByteBuf |
UnpooledByteBufAllocator.compositeDirectBuffer(int maxNumComponents) |
CompositeByteBuf |
AbstractByteBufAllocator.compositeHeapBuffer() |
CompositeByteBuf |
ByteBufAllocator.compositeHeapBuffer()
Allocate a heap
CompositeByteBuf . |
CompositeByteBuf |
AbstractByteBufAllocator.compositeHeapBuffer(int maxNumComponents) |
CompositeByteBuf |
ByteBufAllocator.compositeHeapBuffer(int maxNumComponents)
Allocate a heap
CompositeByteBuf with the given maximum number of components that can be stored in it. |
CompositeByteBuf |
UnpooledByteBufAllocator.compositeHeapBuffer(int maxNumComponents) |
CompositeByteBuf |
CompositeByteBuf.consolidate()
Consolidate the composed
ByteBuf s |
CompositeByteBuf |
WrappedCompositeByteBuf.consolidate() |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.consolidate() |
CompositeByteBuf |
CompositeByteBuf.consolidate(int cIndex,
int numComponents)
Consolidate the composed
ByteBuf s |
CompositeByteBuf |
WrappedCompositeByteBuf.consolidate(int cIndex,
int numComponents) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.consolidate(int cIndex,
int numComponents) |
CompositeByteBuf |
CompositeByteBuf.discardReadBytes() |
CompositeByteBuf |
WrappedCompositeByteBuf.discardReadBytes() |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.discardReadBytes() |
CompositeByteBuf |
CompositeByteBuf.discardReadComponents()
Discard all
ByteBuf s which are read. |
CompositeByteBuf |
WrappedCompositeByteBuf.discardReadComponents() |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.discardReadComponents() |
CompositeByteBuf |
CompositeByteBuf.discardSomeReadBytes() |
CompositeByteBuf |
WrappedCompositeByteBuf.discardSomeReadBytes() |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.discardSomeReadBytes() |
CompositeByteBuf |
CompositeByteBuf.ensureWritable(int minWritableBytes) |
CompositeByteBuf |
WrappedCompositeByteBuf.ensureWritable(int minWritableBytes) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.ensureWritable(int minWritableBytes) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
byte[] dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
byte[] dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
byte[] dst) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
ByteBuf dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
ByteBuf dst) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
java.nio.ByteBuffer dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
java.nio.ByteBuffer dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
java.nio.ByteBuffer dst) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
java.io.OutputStream out,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.getBytes(int index,
java.io.OutputStream out,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.getBytes(int index,
java.io.OutputStream out,
int length) |
CompositeByteBuf |
CompositeByteBuf.markReaderIndex() |
CompositeByteBuf |
WrappedCompositeByteBuf.markReaderIndex() |
CompositeByteBuf |
CompositeByteBuf.markWriterIndex() |
CompositeByteBuf |
WrappedCompositeByteBuf.markWriterIndex() |
CompositeByteBuf |
CompositeByteBuf.readBytes(byte[] dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(byte[] dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(byte[] dst) |
CompositeByteBuf |
CompositeByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(ByteBuf dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(ByteBuf dst) |
CompositeByteBuf |
CompositeByteBuf.readBytes(java.nio.ByteBuffer dst) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(java.nio.ByteBuffer dst) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(java.nio.ByteBuffer dst) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(ByteBuf dst,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(ByteBuf dst,
int length) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.readBytes(java.io.OutputStream out,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.readBytes(java.io.OutputStream out,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.readBytes(java.io.OutputStream out,
int length) |
CompositeByteBuf |
CompositeByteBuf.readerIndex(int readerIndex) |
CompositeByteBuf |
WrappedCompositeByteBuf.readerIndex(int readerIndex) |
CompositeByteBuf |
CompositeByteBuf.removeComponent(int cIndex)
Remove the
ByteBuf from the given index. |
CompositeByteBuf |
WrappedCompositeByteBuf.removeComponent(int cIndex) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.removeComponent(int cIndex) |
CompositeByteBuf |
CompositeByteBuf.removeComponents(int cIndex,
int numComponents)
Remove the number of
ByteBuf s starting from the given index. |
CompositeByteBuf |
WrappedCompositeByteBuf.removeComponents(int cIndex,
int numComponents) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.removeComponents(int cIndex,
int numComponents) |
CompositeByteBuf |
CompositeByteBuf.resetReaderIndex() |
CompositeByteBuf |
WrappedCompositeByteBuf.resetReaderIndex() |
CompositeByteBuf |
CompositeByteBuf.resetWriterIndex() |
CompositeByteBuf |
WrappedCompositeByteBuf.resetWriterIndex() |
CompositeByteBuf |
CompositeByteBuf.retain() |
CompositeByteBuf |
WrappedCompositeByteBuf.retain() |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.retain() |
CompositeByteBuf |
CompositeByteBuf.retain(int increment) |
CompositeByteBuf |
WrappedCompositeByteBuf.retain(int increment) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.retain(int increment) |
CompositeByteBuf |
CompositeByteBuf.setBoolean(int index,
boolean value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBoolean(int index,
boolean value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBoolean(int index,
boolean value) |
CompositeByteBuf |
CompositeByteBuf.setByte(int index,
int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setByte(int index,
int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setByte(int index,
int value) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
byte[] src) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
byte[] src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
byte[] src) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
ByteBuf src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
ByteBuf src) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
java.nio.ByteBuffer src) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
java.nio.ByteBuffer src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
java.nio.ByteBuffer src) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
ByteBuf src,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
ByteBuf src,
int length) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.setChar(int index,
int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setChar(int index,
int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setChar(int index,
int value) |
CompositeByteBuf |
CompositeByteBuf.setDouble(int index,
double value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setDouble(int index,
double value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setDouble(int index,
double value) |
CompositeByteBuf |
CompositeByteBuf.setFloat(int index,
float value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setFloat(int index,
float value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setFloat(int index,
float value) |
CompositeByteBuf |
CompositeByteBuf.setIndex(int readerIndex,
int writerIndex) |
CompositeByteBuf |
WrappedCompositeByteBuf.setIndex(int readerIndex,
int writerIndex) |
CompositeByteBuf |
CompositeByteBuf.setInt(int index,
int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setInt(int index,
int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setInt(int index,
int value) |
CompositeByteBuf |
CompositeByteBuf.setLong(int index,
long value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setLong(int index,
long value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setLong(int index,
long value) |
CompositeByteBuf |
CompositeByteBuf.setMedium(int index,
int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setMedium(int index,
int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setMedium(int index,
int value) |
CompositeByteBuf |
CompositeByteBuf.setShort(int index,
int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.setShort(int index,
int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setShort(int index,
int value) |
CompositeByteBuf |
CompositeByteBuf.setZero(int index,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.setZero(int index,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.setZero(int index,
int length) |
CompositeByteBuf |
CompositeByteBuf.skipBytes(int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.skipBytes(int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.skipBytes(int length) |
protected static CompositeByteBuf |
AbstractByteBufAllocator.toLeakAwareBuffer(CompositeByteBuf buf) |
CompositeByteBuf |
CompositeByteBuf.writeBoolean(boolean value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBoolean(boolean value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBoolean(boolean value) |
CompositeByteBuf |
CompositeByteBuf.writeByte(int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeByte(int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeByte(int value) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(byte[] src) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(byte[] src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(byte[] src) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(ByteBuf src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(ByteBuf src) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(java.nio.ByteBuffer src) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(java.nio.ByteBuffer src) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(java.nio.ByteBuffer src) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(ByteBuf src,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(ByteBuf src,
int length) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.writeChar(int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeChar(int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeChar(int value) |
CompositeByteBuf |
CompositeByteBuf.writeDouble(double value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeDouble(double value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeDouble(double value) |
CompositeByteBuf |
CompositeByteBuf.writeFloat(float value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeFloat(float value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeFloat(float value) |
CompositeByteBuf |
CompositeByteBuf.writeInt(int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeInt(int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeInt(int value) |
CompositeByteBuf |
CompositeByteBuf.writeLong(long value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeLong(long value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeLong(long value) |
CompositeByteBuf |
CompositeByteBuf.writeMedium(int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeMedium(int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeMedium(int value) |
CompositeByteBuf |
CompositeByteBuf.writerIndex(int writerIndex) |
CompositeByteBuf |
WrappedCompositeByteBuf.writerIndex(int writerIndex) |
CompositeByteBuf |
CompositeByteBuf.writeShort(int value) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeShort(int value) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeShort(int value) |
CompositeByteBuf |
CompositeByteBuf.writeZero(int length) |
CompositeByteBuf |
WrappedCompositeByteBuf.writeZero(int length) |
CompositeByteBuf |
AdvancedLeakAwareCompositeByteBuf.writeZero(int length) |
Modifier and Type | Method and Description |
---|---|
protected static CompositeByteBuf |
AbstractByteBufAllocator.toLeakAwareBuffer(CompositeByteBuf buf) |
Constructor and Description |
---|
AdvancedLeakAwareCompositeByteBuf(CompositeByteBuf wrapped,
ResourceLeak leak) |
SimpleLeakAwareCompositeByteBuf(CompositeByteBuf wrapped,
ResourceLeak leak) |
WrappedCompositeByteBuf(CompositeByteBuf wrapped) |
Modifier and Type | Method and Description |
---|---|
(package private) boolean |
IovArray.add(CompositeByteBuf buf)
Try to add the given
CompositeByteBuf . |