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 |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.oio |
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.channel.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
io.netty.channel.socket |
Abstract TCP and UDP socket interfaces which extend the core channel API.
|
io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
io.netty.channel.udt |
UDT Transport.
|
io.netty.channel.udt.nio |
UDT Transport for NIO Channels.
|
io.netty.handler.codec |
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
|
io.netty.handler.codec.base64 | |
io.netty.handler.codec.bytes |
Encoder and decoder which transform an array of bytes into a
ByteBuf and vice versa. |
io.netty.handler.codec.compression | |
io.netty.handler.codec.http |
Encoder, decoder and their related message types for HTTP.
|
io.netty.handler.codec.http.multipart |
HTTP multipart support.
|
io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
io.netty.handler.codec.marshalling |
Decoder and Encoder which uses JBoss Marshalling.
|
io.netty.handler.codec.protobuf |
Encoder and decoder which transform a
Google Protocol Buffers
Message into a ByteBuf
and vice versa. |
io.netty.handler.codec.rtsp |
An RTSP
extension based on the HTTP codec.
|
io.netty.handler.codec.sctp |
Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.
|
io.netty.handler.codec.serialization |
Encoder, decoder and their compatibility stream implementations which
transform a
Serializable object into a byte buffer and
vice versa. |
io.netty.handler.codec.socks |
Encoder, decoder and their related message types for Socks.
|
io.netty.handler.codec.spdy |
Encoder, decoder, session handler and their related message types for the SPDY protocol.
|
io.netty.handler.codec.string | |
io.netty.handler.logging |
Logs a
io.netty.channel.ChannelEvent for debugging purpose. |
io.netty.handler.ssl | |
io.netty.handler.stream |
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractByteBuf
A skeletal implementation of a buffer.
|
class |
AbstractDerivedByteBuf
|
class |
AbstractReferenceCountedByteBuf
Abstract base class for
ByteBuf implementations that count references. |
class |
CompositeByteBuf
A virtual buffer which shows multiple buffers as a single merged buffer.
|
class |
DuplicatedByteBuf
A derived buffer which simply forwards all data access requests to its
parent.
|
class |
EmptyByteBuf
An empty
ByteBuf whose capacity and maximum capacity are all 0 . |
class |
ReadOnlyByteBuf
A derived buffer which forbids any write requests to its parent.
|
class |
SlicedByteBuf
A derived buffer which exposes its parent's sub-region only.
|
class |
SwappedByteBuf
|
class |
UnpooledDirectByteBuf
A NIO
ByteBuffer based buffer. |
class |
UnpooledHeapByteBuf
Big endian Java heap buffer implementation.
|
class |
UnpooledUnsafeDirectByteBuf
A NIO
ByteBuffer based buffer. |
Modifier and Type | Field and Description |
---|---|
static ByteBuf |
Unpooled.EMPTY_BUFFER
A buffer whose capacity is
0 . |
Modifier and Type | Method and Description |
---|---|
static ByteBuf |
Unpooled.buffer()
Creates a new big-endian Java heap buffer with reasonably small initial capacity, which
expands its capacity boundlessly on demand.
|
ByteBuf |
ByteBufOutputStream.buffer()
Returns the buffer where this stream is writing data.
|
ByteBuf |
ByteBufAllocator.buffer()
Allocate a
ByteBuf . |
ByteBuf |
AbstractByteBufAllocator.buffer() |
static ByteBuf |
Unpooled.buffer(int initialCapacity)
Creates a new big-endian Java heap buffer with the specified
capacity , which
expands its capacity boundlessly on demand. |
ByteBuf |
ByteBufAllocator.buffer(int initialCapacity)
Allocate a
ByteBuf with the given initial capacity. |
ByteBuf |
AbstractByteBufAllocator.buffer(int initialCapacity) |
static ByteBuf |
Unpooled.buffer(int initialCapacity,
int maxCapacity)
Creates a new big-endian Java heap buffer with the specified
capacity . |
ByteBuf |
ByteBufAllocator.buffer(int initialCapacity,
int maxCapacity)
Allocate a
ByteBuf with the given initial capacity and the given
maximal capacity. |
ByteBuf |
AbstractByteBufAllocator.buffer(int initialCapacity,
int maxCapacity) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.capacity(int newCapacity) |
ByteBuf |
UnpooledHeapByteBuf.capacity(int newCapacity) |
ByteBuf |
UnpooledDirectByteBuf.capacity(int newCapacity) |
ByteBuf |
SwappedByteBuf.capacity(int newCapacity) |
ByteBuf |
SlicedByteBuf.capacity(int newCapacity) |
ByteBuf |
ReadOnlyByteBuf.capacity(int newCapacity) |
ByteBuf |
EmptyByteBuf.capacity(int newCapacity) |
ByteBuf |
DuplicatedByteBuf.capacity(int newCapacity) |
abstract ByteBuf |
ByteBuf.capacity(int newCapacity)
Adjusts the capacity of this buffer.
|
ByteBuf |
SwappedByteBuf.clear() |
ByteBuf |
EmptyByteBuf.clear() |
abstract ByteBuf |
ByteBuf.clear()
Sets the
readerIndex and writerIndex of this buffer to
0 . |
ByteBuf |
AbstractByteBuf.clear() |
ByteBuf |
CompositeByteBuf.component(int cIndex)
Return the
ByteBuf on the specified index |
ByteBuf |
CompositeByteBuf.componentAtOffset(int offset)
Return the
ByteBuf on the specified index |
ByteBuf |
DefaultByteBufHolder.content() |
ByteBuf |
ByteBufHolder.content()
Return the data which is held by this
ByteBufHolder . |
static ByteBuf |
Unpooled.copiedBuffer(byte[]... arrays)
Creates a new big-endian buffer whose content is a merged copy of
the specified
arrays . |
static ByteBuf |
Unpooled.copiedBuffer(byte[] array)
Creates a new big-endian buffer whose content is a copy of the
specified
array . |
static ByteBuf |
Unpooled.copiedBuffer(byte[] array,
int offset,
int length)
Creates a new big-endian buffer whose content is a copy of the
specified
array 's sub-region. |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuf... buffers)
Creates a new buffer whose content is a merged copy of the specified
buffers ' readable bytes. |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuf buffer)
Creates a new buffer whose content is a copy of the specified
buffer 's readable bytes. |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuffer... buffers)
Creates a new buffer whose content is a merged copy of the specified
buffers ' slices. |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuffer buffer)
Creates a new buffer whose content is a copy of the specified
buffer 's current slice. |
static ByteBuf |
Unpooled.copiedBuffer(char[] array,
Charset charset)
Creates a new big-endian buffer whose content is the specified
array encoded in the specified charset . |
static ByteBuf |
Unpooled.copiedBuffer(char[] array,
int offset,
int length,
Charset charset)
Creates a new big-endian buffer whose content is a subregion of
the specified
array encoded in the specified charset . |
static ByteBuf |
Unpooled.copiedBuffer(CharSequence string,
Charset charset)
Creates a new big-endian buffer whose content is the specified
string encoded in the specified charset . |
static ByteBuf |
Unpooled.copiedBuffer(CharSequence string,
int offset,
int length,
Charset charset)
Creates a new big-endian buffer whose content is a subregion of
the specified
string encoded in the specified charset . |
ByteBuf |
SwappedByteBuf.copy() |
ByteBuf |
EmptyByteBuf.copy() |
abstract ByteBuf |
ByteBuf.copy()
Returns a copy of this buffer's readable bytes.
|
ByteBuf |
AbstractByteBuf.copy() |
ByteBuf |
UnpooledUnsafeDirectByteBuf.copy(int index,
int length) |
ByteBuf |
UnpooledHeapByteBuf.copy(int index,
int length) |
ByteBuf |
UnpooledDirectByteBuf.copy(int index,
int length) |
ByteBuf |
SwappedByteBuf.copy(int index,
int length) |
ByteBuf |
SlicedByteBuf.copy(int index,
int length) |
ByteBuf |
ReadOnlyByteBuf.copy(int index,
int length) |
ByteBuf |
EmptyByteBuf.copy(int index,
int length) |
ByteBuf |
DuplicatedByteBuf.copy(int index,
int length) |
ByteBuf |
CompositeByteBuf.copy(int index,
int length) |
abstract ByteBuf |
ByteBuf.copy(int index,
int length)
Returns a copy of this buffer's sub-region.
|
static ByteBuf |
Unpooled.copyBoolean(boolean... values)
Create a new big-endian buffer that holds a sequence of the specified boolean values.
|
static ByteBuf |
Unpooled.copyBoolean(boolean value)
Creates a new single-byte big-endian buffer that holds the specified boolean value.
|
static ByteBuf |
Unpooled.copyDouble(double... values)
Create a new big-endian buffer that holds a sequence of the specified 64-bit floating point numbers.
|
static ByteBuf |
Unpooled.copyDouble(double value)
Creates a new 8-byte big-endian buffer that holds the specified 64-bit floating point number.
|
static ByteBuf |
Unpooled.copyFloat(float... values)
Create a new big-endian buffer that holds a sequence of the specified 32-bit floating point numbers.
|
static ByteBuf |
Unpooled.copyFloat(float value)
Creates a new 4-byte big-endian buffer that holds the specified 32-bit floating point number.
|
static ByteBuf |
Unpooled.copyInt(int... values)
Create a big-endian buffer that holds a sequence of the specified 32-bit integers.
|
static ByteBuf |
Unpooled.copyInt(int value)
Creates a new 4-byte big-endian buffer that holds the specified 32-bit integer.
|
static ByteBuf |
Unpooled.copyLong(long... values)
Create a new big-endian buffer that holds a sequence of the specified 64-bit integers.
|
static ByteBuf |
Unpooled.copyLong(long value)
Creates a new 8-byte big-endian buffer that holds the specified 64-bit integer.
|
static ByteBuf |
Unpooled.copyMedium(int... values)
Create a new big-endian buffer that holds a sequence of the specified 24-bit integers.
|
static ByteBuf |
Unpooled.copyMedium(int value)
Creates a new 3-byte big-endian buffer that holds the specified 24-bit integer.
|
static ByteBuf |
Unpooled.copyShort(int... values)
Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.
|
static ByteBuf |
Unpooled.copyShort(int value)
Creates a new 2-byte big-endian buffer that holds the specified 16-bit integer.
|
static ByteBuf |
Unpooled.copyShort(short... values)
Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.
|
static ByteBuf |
Unpooled.directBuffer()
Creates a new big-endian direct buffer with reasonably small initial capacity, which
expands its capacity boundlessly on demand.
|
ByteBuf |
ByteBufAllocator.directBuffer()
Allocate a direct
ByteBuf . |
ByteBuf |
AbstractByteBufAllocator.directBuffer() |
static ByteBuf |
Unpooled.directBuffer(int initialCapacity)
Creates a new big-endian direct buffer with the specified
capacity , which
expands its capacity boundlessly on demand. |
ByteBuf |
ByteBufAllocator.directBuffer(int initialCapacity)
Allocate a direct
ByteBuf with the given initial capacity. |
ByteBuf |
AbstractByteBufAllocator.directBuffer(int initialCapacity) |
static ByteBuf |
Unpooled.directBuffer(int initialCapacity,
int maxCapacity)
Creates a new big-endian direct buffer with the specified
capacity . |
ByteBuf |
ByteBufAllocator.directBuffer(int initialCapacity,
int maxCapacity)
Allocate a direct
ByteBuf with the given initial capacity and the given
maximal capacity. |
ByteBuf |
AbstractByteBufAllocator.directBuffer(int initialCapacity,
int maxCapacity) |
ByteBuf |
SwappedByteBuf.discardReadBytes() |
ByteBuf |
ReadOnlyByteBuf.discardReadBytes() |
ByteBuf |
EmptyByteBuf.discardReadBytes() |
abstract ByteBuf |
ByteBuf.discardReadBytes()
Discards the bytes between the 0th index and
readerIndex . |
ByteBuf |
AbstractByteBuf.discardReadBytes() |
ByteBuf |
SwappedByteBuf.discardSomeReadBytes() |
ByteBuf |
EmptyByteBuf.discardSomeReadBytes() |
abstract ByteBuf |
ByteBuf.discardSomeReadBytes()
Similar to
discardReadBytes() except that this method might discard
some, all, or none of read bytes depending on its internal implementation to reduce
overall memory bandwidth consumption at the cost of potentially additional memory
consumption. |
ByteBuf |
AbstractByteBuf.discardSomeReadBytes() |
ByteBuf |
SwappedByteBuf.duplicate() |
ByteBuf |
SlicedByteBuf.duplicate() |
ByteBuf |
ReadOnlyByteBuf.duplicate() |
ByteBuf |
EmptyByteBuf.duplicate() |
abstract ByteBuf |
ByteBuf.duplicate()
Returns a buffer which shares the whole region of this buffer.
|
ByteBuf |
AbstractByteBuf.duplicate() |
ByteBuf |
SwappedByteBuf.ensureWritable(int writableBytes) |
ByteBuf |
EmptyByteBuf.ensureWritable(int minWritableBytes) |
abstract ByteBuf |
ByteBuf.ensureWritable(int minWritableBytes)
Makes sure the number of the writable bytes
is equal to or greater than the specified value.
|
ByteBuf |
AbstractByteBuf.ensureWritable(int minWritableBytes) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
byte[] dst) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
byte[] dst) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
byte[] dst)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.getBytes(int index,
byte[] dst) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
SlicedByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
byte[] dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index until the destination becomes
non-writable. |
ByteBuf |
AbstractByteBuf.getBytes(int index,
ByteBuf dst) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
UnpooledHeapByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
UnpooledDirectByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
SlicedByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
ReadOnlyByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuffer dst) |
ByteBuf |
DuplicatedByteBuf.getBytes(int index,
ByteBuffer dst) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuffer dst)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index until the destination's position
reaches its limit. |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst,
int length)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SlicedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
ByteBuf |
UnpooledUnsafeDirectByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
UnpooledHeapByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
UnpooledDirectByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
SlicedByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
ReadOnlyByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
OutputStream out,
int length) |
ByteBuf |
DuplicatedByteBuf.getBytes(int index,
OutputStream out,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
OutputStream out,
int length)
Transfers this buffer's data to the specified stream starting at the
specified absolute
index . |
ByteBuf |
ByteBufAllocator.heapBuffer()
Allocate a heap
ByteBuf . |
ByteBuf |
AbstractByteBufAllocator.heapBuffer() |
ByteBuf |
ByteBufAllocator.heapBuffer(int initialCapacity)
Allocate a heap
ByteBuf with the given initial capacity. |
ByteBuf |
AbstractByteBufAllocator.heapBuffer(int initialCapacity) |
ByteBuf |
ByteBufAllocator.heapBuffer(int initialCapacity,
int maxCapacity)
Allocate a heap
ByteBuf with the given initial capacity and the given
maximal capacity. |
ByteBuf |
AbstractByteBufAllocator.heapBuffer(int initialCapacity,
int maxCapacity) |
ByteBuf |
CompositeByteBuf.internalComponent(int cIndex)
Return the internal
ByteBuf on the specified index. |
ByteBuf |
CompositeByteBuf.internalComponentAtOffset(int offset)
Return the internal
ByteBuf on the specified offset. |
ByteBuf |
ByteBufAllocator.ioBuffer()
Allocate a
ByteBuf whose initial capacity is 0, preferably a direct buffer which is suitable for I/O. |
ByteBuf |
AbstractByteBufAllocator.ioBuffer() |
ByteBuf |
ByteBufAllocator.ioBuffer(int initialCapacity)
Allocate a
ByteBuf , preferably a direct buffer which is suitable for I/O. |
ByteBuf |
AbstractByteBufAllocator.ioBuffer(int initialCapacity) |
ByteBuf |
ByteBufAllocator.ioBuffer(int initialCapacity,
int maxCapacity)
Allocate a
ByteBuf , preferably a direct buffer which is suitable for I/O. |
ByteBuf |
AbstractByteBufAllocator.ioBuffer(int initialCapacity,
int maxCapacity) |
ByteBuf |
SwappedByteBuf.markReaderIndex() |
ByteBuf |
EmptyByteBuf.markReaderIndex() |
abstract ByteBuf |
ByteBuf.markReaderIndex()
Marks the current
readerIndex in this buffer. |
ByteBuf |
AbstractByteBuf.markReaderIndex() |
ByteBuf |
SwappedByteBuf.markWriterIndex() |
ByteBuf |
EmptyByteBuf.markWriterIndex() |
abstract ByteBuf |
ByteBuf.markWriterIndex()
Marks the current
writerIndex in this buffer. |
ByteBuf |
AbstractByteBuf.markWriterIndex() |
protected ByteBuf |
UnpooledByteBufAllocator.newDirectBuffer(int initialCapacity,
int maxCapacity) |
protected ByteBuf |
PooledByteBufAllocator.newDirectBuffer(int initialCapacity,
int maxCapacity) |
protected abstract ByteBuf |
AbstractByteBufAllocator.newDirectBuffer(int initialCapacity,
int maxCapacity)
Create a direct
ByteBuf with the given initialCapacity and maxCapacity. |
protected ByteBuf |
UnpooledByteBufAllocator.newHeapBuffer(int initialCapacity,
int maxCapacity) |
protected ByteBuf |
PooledByteBufAllocator.newHeapBuffer(int initialCapacity,
int maxCapacity) |
protected abstract ByteBuf |
AbstractByteBufAllocator.newHeapBuffer(int initialCapacity,
int maxCapacity)
Create a heap
ByteBuf with the given initialCapacity and maxCapacity. |
ByteBuf |
SwappedByteBuf.order(ByteOrder endianness) |
ByteBuf |
EmptyByteBuf.order(ByteOrder endianness) |
abstract ByteBuf |
ByteBuf.order(ByteOrder endianness)
Returns a buffer with the specified
endianness which shares the whole region,
indexes, and marks of this buffer. |
ByteBuf |
AbstractByteBuf.order(ByteOrder endianness) |
ByteBuf |
SwappedByteBuf.readBytes(byte[] dst) |
ByteBuf |
EmptyByteBuf.readBytes(byte[] dst) |
abstract ByteBuf |
ByteBuf.readBytes(byte[] dst)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= dst.length ). |
ByteBuf |
AbstractByteBuf.readBytes(byte[] dst) |
ByteBuf |
SwappedByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(byte[] dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(byte[] dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex until the destination becomes
non-writable, and increases the readerIndex by the number of the
transferred bytes. |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuffer dst) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuffer dst) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuffer dst)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex until the destination's position
reaches its limit, and increases the readerIndex by the
number of the transferred bytes. |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuffer dst) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst,
int length) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.readBytes(int length) |
ByteBuf |
EmptyByteBuf.readBytes(int length) |
abstract ByteBuf |
ByteBuf.readBytes(int length)
Transfers this buffer's data to a newly created buffer starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(int length) |
ByteBuf |
SwappedByteBuf.readBytes(OutputStream out,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(OutputStream out,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(OutputStream out,
int length)
Transfers this buffer's data to the specified stream starting at the
current
readerIndex . |
ByteBuf |
AbstractByteBuf.readBytes(OutputStream out,
int length) |
ByteBuf |
SwappedByteBuf.readerIndex(int readerIndex) |
ByteBuf |
EmptyByteBuf.readerIndex(int readerIndex) |
abstract ByteBuf |
ByteBuf.readerIndex(int readerIndex)
Sets the
readerIndex of this buffer. |
ByteBuf |
AbstractByteBuf.readerIndex(int readerIndex) |
ByteBuf |
SwappedByteBuf.readSlice(int length) |
ByteBuf |
EmptyByteBuf.readSlice(int length) |
abstract ByteBuf |
ByteBuf.readSlice(int length)
Returns a new slice of this buffer's sub-region starting at the current
readerIndex and increases the readerIndex by the size
of the new slice (= length ). |
ByteBuf |
AbstractByteBuf.readSlice(int length) |
ByteBuf |
SwappedByteBuf.resetReaderIndex() |
ByteBuf |
EmptyByteBuf.resetReaderIndex() |
abstract ByteBuf |
ByteBuf.resetReaderIndex()
Repositions the current
readerIndex to the marked
readerIndex in this buffer. |
ByteBuf |
AbstractByteBuf.resetReaderIndex() |
ByteBuf |
SwappedByteBuf.resetWriterIndex() |
ByteBuf |
EmptyByteBuf.resetWriterIndex() |
abstract ByteBuf |
ByteBuf.resetWriterIndex()
Repositions the current
writerIndex to the marked
writerIndex in this buffer. |
ByteBuf |
AbstractByteBuf.resetWriterIndex() |
ByteBuf |
SwappedByteBuf.retain() |
ByteBuf |
EmptyByteBuf.retain() |
abstract ByteBuf |
ByteBuf.retain() |
ByteBuf |
AbstractReferenceCountedByteBuf.retain() |
ByteBuf |
AbstractDerivedByteBuf.retain() |
ByteBuf |
SwappedByteBuf.retain(int increment) |
ByteBuf |
EmptyByteBuf.retain(int increment) |
abstract ByteBuf |
ByteBuf.retain(int increment) |
ByteBuf |
AbstractReferenceCountedByteBuf.retain(int increment) |
ByteBuf |
AbstractDerivedByteBuf.retain(int increment) |
ByteBuf |
SwappedByteBuf.setBoolean(int index,
boolean value) |
ByteBuf |
EmptyByteBuf.setBoolean(int index,
boolean value) |
abstract ByteBuf |
ByteBuf.setBoolean(int index,
boolean value)
Sets the specified boolean at the specified absolute
index in this
buffer. |
ByteBuf |
AbstractByteBuf.setBoolean(int index,
boolean value) |
ByteBuf |
UnpooledHeapByteBuf.setByte(int index,
int value) |
ByteBuf |
UnpooledDirectByteBuf.setByte(int index,
int value) |
ByteBuf |
SwappedByteBuf.setByte(int index,
int value) |
ByteBuf |
ReadOnlyByteBuf.setByte(int index,
int value) |
ByteBuf |
EmptyByteBuf.setByte(int index,
int value) |
ByteBuf |
DuplicatedByteBuf.setByte(int index,
int value) |
abstract ByteBuf |
ByteBuf.setByte(int index,
int value)
Sets the specified byte at the specified absolute
index in this
buffer. |
ByteBuf |
AbstractByteBuf.setByte(int index,
int value) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
byte[] src) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
byte[] src) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
byte[] src)
Transfers the specified source array's data to this buffer starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.setBytes(int index,
byte[] src) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
SlicedByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
byte[] src,
int srcIndex,
int length)
Transfers the specified source array's data to this buffer starting at
the specified absolute
index . |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index until the source buffer becomes
unreadable. |
ByteBuf |
AbstractByteBuf.setBytes(int index,
ByteBuf src) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
UnpooledHeapByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
UnpooledDirectByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
SlicedByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
ReadOnlyByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuffer src) |
ByteBuf |
DuplicatedByteBuf.setBytes(int index,
ByteBuffer src) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuffer src)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index until the source buffer's position
reaches its limit. |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src,
int length) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src,
int length) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src,
int length)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.setBytes(int index,
ByteBuf src,
int length) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
SlicedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index . |
ByteBuf |
SwappedByteBuf.setChar(int index,
int value) |
ByteBuf |
EmptyByteBuf.setChar(int index,
int value) |
abstract ByteBuf |
ByteBuf.setChar(int index,
int value)
Sets the specified 2-byte UTF-16 character at the specified absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setChar(int index,
int value) |
ByteBuf |
SwappedByteBuf.setDouble(int index,
double value) |
ByteBuf |
EmptyByteBuf.setDouble(int index,
double value) |
abstract ByteBuf |
ByteBuf.setDouble(int index,
double value)
Sets the specified 64-bit floating-point number at the specified
absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setDouble(int index,
double value) |
ByteBuf |
SwappedByteBuf.setFloat(int index,
float value) |
ByteBuf |
EmptyByteBuf.setFloat(int index,
float value) |
abstract ByteBuf |
ByteBuf.setFloat(int index,
float value)
Sets the specified 32-bit floating-point number at the specified
absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setFloat(int index,
float value) |
ByteBuf |
SwappedByteBuf.setIndex(int readerIndex,
int writerIndex) |
ByteBuf |
EmptyByteBuf.setIndex(int readerIndex,
int writerIndex) |
abstract ByteBuf |
ByteBuf.setIndex(int readerIndex,
int writerIndex)
Sets the
readerIndex and writerIndex of this buffer
in one shot. |
ByteBuf |
AbstractByteBuf.setIndex(int readerIndex,
int writerIndex) |
ByteBuf |
UnpooledHeapByteBuf.setInt(int index,
int value) |
ByteBuf |
UnpooledDirectByteBuf.setInt(int index,
int value) |
ByteBuf |
SwappedByteBuf.setInt(int index,
int value) |
ByteBuf |
ReadOnlyByteBuf.setInt(int index,
int value) |
ByteBuf |
EmptyByteBuf.setInt(int index,
int value) |
ByteBuf |
DuplicatedByteBuf.setInt(int index,
int value) |
abstract ByteBuf |
ByteBuf.setInt(int index,
int value)
Sets the specified 32-bit integer at the specified absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setInt(int index,
int value) |
ByteBuf |
UnpooledHeapByteBuf.setLong(int index,
long value) |
ByteBuf |
UnpooledDirectByteBuf.setLong(int index,
long value) |
ByteBuf |
SwappedByteBuf.setLong(int index,
long value) |
ByteBuf |
ReadOnlyByteBuf.setLong(int index,
long value) |
ByteBuf |
EmptyByteBuf.setLong(int index,
long value) |
ByteBuf |
DuplicatedByteBuf.setLong(int index,
long value) |
abstract ByteBuf |
ByteBuf.setLong(int index,
long value)
Sets the specified 64-bit long integer at the specified absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setLong(int index,
long value) |
ByteBuf |
UnpooledHeapByteBuf.setMedium(int index,
int value) |
ByteBuf |
UnpooledDirectByteBuf.setMedium(int index,
int value) |
ByteBuf |
SwappedByteBuf.setMedium(int index,
int value) |
ByteBuf |
ReadOnlyByteBuf.setMedium(int index,
int value) |
ByteBuf |
EmptyByteBuf.setMedium(int index,
int value) |
ByteBuf |
DuplicatedByteBuf.setMedium(int index,
int value) |
abstract ByteBuf |
ByteBuf.setMedium(int index,
int value)
Sets the specified 24-bit medium integer at the specified absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setMedium(int index,
int value) |
ByteBuf |
UnpooledHeapByteBuf.setShort(int index,
int value) |
ByteBuf |
UnpooledDirectByteBuf.setShort(int index,
int value) |
ByteBuf |
SwappedByteBuf.setShort(int index,
int value) |
ByteBuf |
ReadOnlyByteBuf.setShort(int index,
int value) |
ByteBuf |
EmptyByteBuf.setShort(int index,
int value) |
ByteBuf |
DuplicatedByteBuf.setShort(int index,
int value) |
abstract ByteBuf |
ByteBuf.setShort(int index,
int value)
Sets the specified 16-bit short integer at the specified absolute
index in this buffer. |
ByteBuf |
AbstractByteBuf.setShort(int index,
int value) |
ByteBuf |
SwappedByteBuf.setZero(int index,
int length) |
ByteBuf |
EmptyByteBuf.setZero(int index,
int length) |
abstract ByteBuf |
ByteBuf.setZero(int index,
int length)
Fills this buffer with NUL (0x00) starting at the specified
absolute
index . |
ByteBuf |
AbstractByteBuf.setZero(int index,
int length) |
ByteBuf |
SwappedByteBuf.skipBytes(int length) |
ByteBuf |
EmptyByteBuf.skipBytes(int length) |
abstract ByteBuf |
ByteBuf.skipBytes(int length)
Increases the current
readerIndex by the specified
length in this buffer. |
ByteBuf |
AbstractByteBuf.skipBytes(int length) |
ByteBuf |
SwappedByteBuf.slice() |
ByteBuf |
EmptyByteBuf.slice() |
abstract ByteBuf |
ByteBuf.slice()
Returns a slice of this buffer's readable bytes.
|
ByteBuf |
AbstractByteBuf.slice() |
ByteBuf |
SwappedByteBuf.slice(int index,
int length) |
ByteBuf |
SlicedByteBuf.slice(int index,
int length) |
ByteBuf |
ReadOnlyByteBuf.slice(int index,
int length) |
ByteBuf |
EmptyByteBuf.slice(int index,
int length) |
ByteBuf |
DuplicatedByteBuf.slice(int index,
int length) |
abstract ByteBuf |
ByteBuf.slice(int index,
int length)
Returns a slice of this buffer's sub-region.
|
ByteBuf |
AbstractByteBuf.slice(int index,
int length) |
static ByteBuf |
Unpooled.unmodifiableBuffer(ByteBuf buffer)
Creates a read-only buffer which disallows any modification operations
on the specified
buffer . |
static ByteBuf |
Unpooled.unreleasableBuffer(ByteBuf buf)
Return a unreleasable view on the given
ByteBuf which will just ignore release and retain calls. |
ByteBuf |
UnpooledUnsafeDirectByteBuf.unwrap() |
ByteBuf |
UnpooledHeapByteBuf.unwrap() |
ByteBuf |
UnpooledDirectByteBuf.unwrap() |
ByteBuf |
SwappedByteBuf.unwrap() |
ByteBuf |
SlicedByteBuf.unwrap() |
ByteBuf |
ReadOnlyByteBuf.unwrap() |
ByteBuf |
EmptyByteBuf.unwrap() |
ByteBuf |
DuplicatedByteBuf.unwrap() |
ByteBuf |
CompositeByteBuf.unwrap() |
abstract ByteBuf |
ByteBuf.unwrap()
Return the underlying buffer instance if this buffer is a wrapper of another buffer.
|
static ByteBuf |
Unpooled.wrappedBuffer(byte[]... arrays)
Creates a new big-endian composite buffer which wraps the specified
arrays without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(byte[] array)
Creates a new big-endian buffer which wraps the specified
array . |
static ByteBuf |
Unpooled.wrappedBuffer(byte[] array,
int offset,
int length)
Creates a new big-endian buffer which wraps the sub-region of the
specified
array . |
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuf... buffers)
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuf buffer)
Creates a new buffer which wraps the specified buffer's readable bytes.
|
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuffer... buffers)
Creates a new big-endian composite buffer which wraps the slices of the specified
NIO buffers without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuffer buffer)
Creates a new buffer which wraps the specified NIO buffer's current
slice.
|
static ByteBuf |
Unpooled.wrappedBuffer(int maxNumComponents,
byte[]... arrays)
Creates a new big-endian composite buffer which wraps the specified
arrays without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(int maxNumComponents,
ByteBuf... buffers)
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(int maxNumComponents,
ByteBuffer... buffers)
Creates a new big-endian composite buffer which wraps the slices of the specified
NIO buffers without copying them.
|
ByteBuf |
SwappedByteBuf.writeBoolean(boolean value) |
ByteBuf |
EmptyByteBuf.writeBoolean(boolean value) |
abstract ByteBuf |
ByteBuf.writeBoolean(boolean value)
Sets the specified boolean at the current
writerIndex
and increases the writerIndex by 1 in this buffer. |
ByteBuf |
AbstractByteBuf.writeBoolean(boolean value) |
ByteBuf |
SwappedByteBuf.writeByte(int value) |
ByteBuf |
EmptyByteBuf.writeByte(int value) |
abstract ByteBuf |
ByteBuf.writeByte(int value)
Sets the specified byte at the current
writerIndex
and increases the writerIndex by 1 in this buffer. |
ByteBuf |
AbstractByteBuf.writeByte(int value) |
ByteBuf |
SwappedByteBuf.writeBytes(byte[] src) |
ByteBuf |
EmptyByteBuf.writeBytes(byte[] src) |
abstract ByteBuf |
ByteBuf.writeBytes(byte[] src)
Transfers the specified source array's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= src.length ). |
ByteBuf |
AbstractByteBuf.writeBytes(byte[] src) |
ByteBuf |
SwappedByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.writeBytes(byte[] src,
int srcIndex,
int length)
Transfers the specified source array's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.writeBytes(byte[] src,
int srcIndex,
int length) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex until the source buffer becomes
unreadable, and increases the writerIndex by the number of
the transferred bytes. |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuffer src) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuffer src) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuffer src)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex until the source buffer's position
reaches its limit, and increases the writerIndex by the
number of the transferred bytes. |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuffer src) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src,
int length) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src,
int length) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src,
int length)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src,
int length) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
SwappedByteBuf.writeChar(int value) |
ByteBuf |
EmptyByteBuf.writeChar(int value) |
abstract ByteBuf |
ByteBuf.writeChar(int value)
Sets the specified 2-byte UTF-16 character at the current
writerIndex and increases the writerIndex by 2
in this buffer. |
ByteBuf |
AbstractByteBuf.writeChar(int value) |
ByteBuf |
SwappedByteBuf.writeDouble(double value) |
ByteBuf |
EmptyByteBuf.writeDouble(double value) |
abstract ByteBuf |
ByteBuf.writeDouble(double value)
Sets the specified 64-bit floating point number at the current
writerIndex and increases the writerIndex by 8
in this buffer. |
ByteBuf |
AbstractByteBuf.writeDouble(double value) |
ByteBuf |
SwappedByteBuf.writeFloat(float value) |
ByteBuf |
EmptyByteBuf.writeFloat(float value) |
abstract ByteBuf |
ByteBuf.writeFloat(float value)
Sets the specified 32-bit floating point number at the current
writerIndex and increases the writerIndex by 4
in this buffer. |
ByteBuf |
AbstractByteBuf.writeFloat(float value) |
ByteBuf |
SwappedByteBuf.writeInt(int value) |
ByteBuf |
EmptyByteBuf.writeInt(int value) |
abstract ByteBuf |
ByteBuf.writeInt(int value)
Sets the specified 32-bit integer at the current
writerIndex
and increases the writerIndex by 4 in this buffer. |
ByteBuf |
AbstractByteBuf.writeInt(int value) |
ByteBuf |
SwappedByteBuf.writeLong(long value) |
ByteBuf |
EmptyByteBuf.writeLong(long value) |
abstract ByteBuf |
ByteBuf.writeLong(long value)
Sets the specified 64-bit long integer at the current
writerIndex and increases the writerIndex by 8
in this buffer. |
ByteBuf |
AbstractByteBuf.writeLong(long value) |
ByteBuf |
SwappedByteBuf.writeMedium(int value) |
ByteBuf |
EmptyByteBuf.writeMedium(int value) |
abstract ByteBuf |
ByteBuf.writeMedium(int value)
Sets the specified 24-bit medium integer at the current
writerIndex and increases the writerIndex by 3
in this buffer. |
ByteBuf |
AbstractByteBuf.writeMedium(int value) |
ByteBuf |
SwappedByteBuf.writerIndex(int writerIndex) |
ByteBuf |
EmptyByteBuf.writerIndex(int writerIndex) |
abstract ByteBuf |
ByteBuf.writerIndex(int writerIndex)
Sets the
writerIndex of this buffer. |
ByteBuf |
AbstractByteBuf.writerIndex(int writerIndex) |
ByteBuf |
SwappedByteBuf.writeShort(int value) |
ByteBuf |
EmptyByteBuf.writeShort(int value) |
abstract ByteBuf |
ByteBuf.writeShort(int value)
Sets the specified 16-bit short integer at the current
writerIndex and increases the writerIndex by 2
in this buffer. |
ByteBuf |
AbstractByteBuf.writeShort(int value) |
ByteBuf |
SwappedByteBuf.writeZero(int length) |
ByteBuf |
EmptyByteBuf.writeZero(int length) |
abstract ByteBuf |
ByteBuf.writeZero(int length)
Fills this buffer with NUL (0x00) starting at the current
writerIndex and increases the writerIndex by the
specified length . |
ByteBuf |
AbstractByteBuf.writeZero(int length) |
Modifier and Type | Method and Description |
---|---|
List<ByteBuf> |
CompositeByteBuf.decompose(int offset,
int length)
Same with
AbstractByteBuf.slice(int, int) except that this method returns a list. |
Iterator<ByteBuf> |
CompositeByteBuf.iterator() |
Modifier and Type | Method and Description |
---|---|
CompositeByteBuf |
CompositeByteBuf.addComponent(ByteBuf buffer)
Add the given
ByteBuf . |
CompositeByteBuf |
CompositeByteBuf.addComponent(int cIndex,
ByteBuf buffer)
Add the given
ByteBuf on the specific index. |
CompositeByteBuf |
CompositeByteBuf.addComponents(ByteBuf... buffers)
Add the given
ByteBuf s. |
CompositeByteBuf |
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 . |
static int |
ByteBufUtil.compare(ByteBuf bufferA,
ByteBuf bufferB)
Compares the two specified buffers as described in
compareTo(ByteBuf) . |
int |
SwappedByteBuf.compareTo(ByteBuf buffer) |
int |
EmptyByteBuf.compareTo(ByteBuf buffer) |
abstract int |
ByteBuf.compareTo(ByteBuf buffer)
Compares the content of the specified buffer to the content of this
buffer.
|
int |
AbstractByteBuf.compareTo(ByteBuf that) |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuf... buffers)
Creates a new buffer whose content is a merged copy of the specified
buffers ' readable bytes. |
static ByteBuf |
Unpooled.copiedBuffer(ByteBuf buffer)
Creates a new buffer whose content is a copy of the specified
buffer 's readable bytes. |
static boolean |
ByteBufUtil.equals(ByteBuf bufferA,
ByteBuf bufferB)
Returns
true if and only if the two specified buffers are
identical to each other as described in ChannelBuffer#equals(Object) . |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index until the destination becomes
non-writable. |
ByteBuf |
AbstractByteBuf.getBytes(int index,
ByteBuf dst) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst,
int length)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.getBytes(int index,
ByteBuf dst,
int length) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SlicedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.getBytes(int index,
ByteBuf dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the specified absolute
index . |
static int |
ByteBufUtil.hashCode(ByteBuf buffer)
Calculates the hash code of the specified buffer.
|
static String |
ByteBufUtil.hexDump(ByteBuf buffer)
Returns a hex dump
of the specified buffer's readable bytes.
|
static String |
ByteBufUtil.hexDump(ByteBuf buffer,
int fromIndex,
int length)
Returns a hex dump
of the specified buffer's sub-region.
|
static int |
ByteBufUtil.indexOf(ByteBuf buffer,
int fromIndex,
int toIndex,
byte value)
The default implementation of
indexOf(int, int, byte) . |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex until the destination becomes
non-writable, and increases the readerIndex by the number of the
transferred bytes. |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst,
int length) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst,
int length) |
ByteBuf |
SwappedByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
EmptyByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
abstract ByteBuf |
ByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.readBytes(ByteBuf dst,
int dstIndex,
int length) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index until the source buffer becomes
unreadable. |
ByteBuf |
AbstractByteBuf.setBytes(int index,
ByteBuf src) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src,
int length) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src,
int length) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src,
int length) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src,
int length)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index . |
ByteBuf |
AbstractByteBuf.setBytes(int index,
ByteBuf src,
int length) |
ByteBuf |
UnpooledUnsafeDirectByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
UnpooledHeapByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
UnpooledDirectByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
SwappedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
SlicedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
ReadOnlyByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
DuplicatedByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.setBytes(int index,
ByteBuf src,
int srcIndex,
int length)
Transfers the specified source buffer's data to this buffer starting at
the specified absolute
index . |
static ByteBuf |
Unpooled.unmodifiableBuffer(ByteBuf buffer)
Creates a read-only buffer which disallows any modification operations
on the specified
buffer . |
static ByteBuf |
Unpooled.unreleasableBuffer(ByteBuf buf)
Return a unreleasable view on the given
ByteBuf which will just ignore release and retain calls. |
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuf... buffers)
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
|
static ByteBuf |
Unpooled.wrappedBuffer(ByteBuf buffer)
Creates a new buffer which wraps the specified buffer's readable bytes.
|
static ByteBuf |
Unpooled.wrappedBuffer(int maxNumComponents,
ByteBuf... buffers)
Creates a new big-endian composite buffer which wraps the readable bytes of the
specified buffers without copying them.
|
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex until the source buffer becomes
unreadable, and increases the writerIndex by the number of
the transferred bytes. |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src,
int length) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src,
int length) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src,
int length) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src,
int length)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src,
int length) |
ByteBuf |
SwappedByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
ByteBuf |
EmptyByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
CompositeByteBuf |
CompositeByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
abstract ByteBuf |
ByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length)
Transfers the specified source buffer's data to this buffer starting at
the current
writerIndex and increases the writerIndex
by the number of the transferred bytes (= length ). |
ByteBuf |
AbstractByteBuf.writeBytes(ByteBuf src,
int srcIndex,
int length) |
Modifier and Type | Method and Description |
---|---|
CompositeByteBuf |
CompositeByteBuf.addComponents(int cIndex,
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 |
CompositeByteBuf.addComponents(Iterable<ByteBuf> buffers)
Add the given
ByteBuf s. |
Constructor and Description |
---|
ByteBufInputStream(ByteBuf buffer)
Creates a new stream which reads data from the specified
buffer
starting at the current readerIndex and ending at the current
writerIndex . |
ByteBufInputStream(ByteBuf buffer,
int length)
Creates a new stream which reads data from the specified
buffer
starting at the current readerIndex and ending at
readerIndex + length . |
ByteBufOutputStream(ByteBuf buffer)
Creates a new stream which writes data to the specified
buffer . |
CompositeByteBuf(ByteBufAllocator alloc,
boolean direct,
int maxNumComponents,
ByteBuf... buffers) |
DefaultByteBufHolder(ByteBuf data) |
DuplicatedByteBuf(ByteBuf buffer) |
ReadOnlyByteBuf(ByteBuf buffer) |
SlicedByteBuf(ByteBuf buffer,
int index,
int length) |
SwappedByteBuf(ByteBuf buf) |
Constructor and Description |
---|
CompositeByteBuf(ByteBufAllocator alloc,
boolean direct,
int maxNumComponents,
Iterable<ByteBuf> buffers) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
RecvByteBufAllocator.Handle.allocate(ByteBufAllocator alloc)
Creates a new receive buffer whose capacity is probably large enough to read all inbound data and small
enough not to waste its space.
|
Modifier and Type | Method and Description |
---|---|
protected abstract int |
AbstractNioByteChannel.doReadBytes(ByteBuf buf)
Read bytes into the given
ByteBuf and return the amount. |
protected abstract int |
AbstractNioByteChannel.doWriteBytes(ByteBuf buf)
|
Modifier and Type | Method and Description |
---|---|
protected int |
OioByteStreamChannel.doReadBytes(ByteBuf buf) |
protected abstract int |
AbstractOioByteChannel.doReadBytes(ByteBuf buf)
Read bytes from the underlying Socket.
|
protected void |
OioByteStreamChannel.doWriteBytes(ByteBuf buf) |
protected abstract void |
AbstractOioByteChannel.doWriteBytes(ByteBuf buf)
Write the data which is hold by the
ByteBuf to the underlying Socket. |
Constructor and Description |
---|
SctpMessage(int protocolIdentifier,
int streamIdentifier,
ByteBuf payloadBuffer)
Essential data that is being carried within SCTP Data Chunk
|
SctpMessage(com.sun.nio.sctp.MessageInfo msgInfo,
ByteBuf payloadBuffer)
Essential data that is being carried within SCTP Data Chunk
|
Constructor and Description |
---|
DatagramPacket(ByteBuf data,
InetSocketAddress recipient)
Create a new instance with the specified packet
data and recipient address. |
DatagramPacket(ByteBuf data,
InetSocketAddress recipient,
InetSocketAddress sender)
Create a new instance with the specified packet
data , recipient address, and sender
address. |
Modifier and Type | Method and Description |
---|---|
protected int |
NioSocketChannel.doReadBytes(ByteBuf byteBuf) |
protected int |
NioSocketChannel.doWriteBytes(ByteBuf buf) |
Modifier and Type | Method and Description |
---|---|
protected int |
OioSocketChannel.doReadBytes(ByteBuf buf) |
Constructor and Description |
---|
UdtMessage(ByteBuf data) |
Modifier and Type | Method and Description |
---|---|
protected int |
NioUdtByteConnectorChannel.doReadBytes(ByteBuf byteBuf) |
protected int |
NioUdtByteConnectorChannel.doWriteBytes(ByteBuf byteBuf) |
Modifier and Type | Method and Description |
---|---|
protected ByteBuf |
LengthFieldBasedFrameDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length)
Extract the sub-region of the specified buffer.
|
protected ByteBuf |
ByteToMessageDecoder.internalBuffer()
Returns the internal cumulative buffer of this decoder.
|
static ByteBuf[] |
Delimiters.lineDelimiter()
Returns
CR ('\r') and LF ('\n') delimiters, which could
be used for text-based line protocols. |
static ByteBuf[] |
Delimiters.nulDelimiter()
Returns a
NUL (0x00) delimiter, which could be used for
Flash XML socket or any similar protocols. |
Modifier and Type | Method and Description |
---|---|
protected void |
ReplayingDecoder.callDecode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
ByteToMessageDecoder.callDecode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out)
Called once data should be decoded from the given
ByteBuf . |
protected Object |
LineBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf buffer)
Create a frame out of the
ByteBuf and return it. |
protected Object |
LengthFieldBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in)
Create a frame out of the
ByteBuf and return it. |
protected Object |
FixedLengthFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in)
Create a frame out of the
ByteBuf and return it. |
protected Object |
DelimiterBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf buffer)
Create a frame out of the
ByteBuf and return it. |
protected void |
LineBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
LengthFieldBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
FixedLengthFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
DelimiterBasedFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected abstract void |
ByteToMessageDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out)
Decode the from one
ByteBuf to an other. |
protected abstract void |
ByteToMessageCodec.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
ByteToMessageDecoder.decodeLast(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out)
Is called one last time when the
ChannelHandlerContext goes in-active. |
protected void |
ByteToMessageCodec.decodeLast(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
LengthFieldPrepender.encode(ChannelHandlerContext ctx,
ByteBuf msg,
ByteBuf out) |
protected abstract void |
MessageToByteEncoder.encode(ChannelHandlerContext ctx,
I msg,
ByteBuf out)
Encode a message into a
ByteBuf . |
protected abstract void |
ByteToMessageCodec.encode(ChannelHandlerContext ctx,
I msg,
ByteBuf out) |
protected ByteBuf |
LengthFieldBasedFrameDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length)
Extract the sub-region of the specified buffer.
|
Constructor and Description |
---|
DelimiterBasedFrameDecoder(int maxFrameLength,
boolean stripDelimiter,
boolean failFast,
ByteBuf... delimiters)
Creates a new instance.
|
DelimiterBasedFrameDecoder(int maxFrameLength,
boolean stripDelimiter,
boolean failFast,
ByteBuf delimiter)
Creates a new instance.
|
DelimiterBasedFrameDecoder(int maxFrameLength,
boolean stripDelimiter,
ByteBuf... delimiters)
Creates a new instance.
|
DelimiterBasedFrameDecoder(int maxFrameLength,
boolean stripDelimiter,
ByteBuf delimiter)
Creates a new instance.
|
DelimiterBasedFrameDecoder(int maxFrameLength,
ByteBuf... delimiters)
Creates a new instance.
|
DelimiterBasedFrameDecoder(int maxFrameLength,
ByteBuf delimiter)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
static ByteBuf |
Base64.decode(ByteBuf src) |
static ByteBuf |
Base64.decode(ByteBuf src,
Base64Dialect dialect) |
static ByteBuf |
Base64.decode(ByteBuf src,
int off,
int len) |
static ByteBuf |
Base64.decode(ByteBuf src,
int off,
int len,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src) |
static ByteBuf |
Base64.encode(ByteBuf src,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
boolean breakLines) |
static ByteBuf |
Base64.encode(ByteBuf src,
boolean breakLines,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
boolean breakLines) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
boolean breakLines,
Base64Dialect dialect) |
Modifier and Type | Method and Description |
---|---|
static ByteBuf |
Base64.decode(ByteBuf src) |
static ByteBuf |
Base64.decode(ByteBuf src,
Base64Dialect dialect) |
static ByteBuf |
Base64.decode(ByteBuf src,
int off,
int len) |
static ByteBuf |
Base64.decode(ByteBuf src,
int off,
int len,
Base64Dialect dialect) |
protected void |
Base64Decoder.decode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
static ByteBuf |
Base64.encode(ByteBuf src) |
static ByteBuf |
Base64.encode(ByteBuf src,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
boolean breakLines) |
static ByteBuf |
Base64.encode(ByteBuf src,
boolean breakLines,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
Base64Dialect dialect) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
boolean breakLines) |
static ByteBuf |
Base64.encode(ByteBuf src,
int off,
int len,
boolean breakLines,
Base64Dialect dialect) |
protected void |
Base64Encoder.encode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
Modifier and Type | Method and Description |
---|---|
protected void |
ByteArrayDecoder.decode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
Modifier and Type | Method and Description |
---|---|
static int |
Snappy.calculateChecksum(ByteBuf data)
Computes the CRC32 checksum of the supplied data and performs the "mask" operation
on the computed checksum
|
static int |
Snappy.calculateChecksum(ByteBuf data,
int offset,
int length)
Computes the CRC32 checksum of the supplied data and performs the "mask" operation
on the computed checksum
|
void |
Snappy.decode(ByteBuf in,
ByteBuf out) |
protected void |
SnappyFramedDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
JZlibDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
void |
Snappy.encode(ByteBuf in,
ByteBuf out,
int length) |
protected void |
SnappyFramedEncoder.encode(ChannelHandlerContext ctx,
ByteBuf in,
ByteBuf out) |
protected void |
JZlibEncoder.encode(ChannelHandlerContext ctx,
ByteBuf in,
ByteBuf out) |
protected void |
JdkZlibEncoder.encode(ChannelHandlerContext ctx,
ByteBuf in,
ByteBuf out) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
DefaultHttpContent.content() |
ByteBuf |
DefaultFullHttpResponse.content() |
ByteBuf |
DefaultFullHttpRequest.content() |
Modifier and Type | Method and Description |
---|---|
protected void |
HttpObjectDecoder.decode(ChannelHandlerContext ctx,
ByteBuf buffer,
List<Object> out) |
protected void |
HttpObjectDecoder.decodeLast(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected static void |
HttpObjectEncoder.encodeAscii(String s,
ByteBuf buf) |
protected abstract void |
HttpObjectEncoder.encodeInitialLine(ByteBuf buf,
H message) |
protected void |
HttpRequestEncoder.encodeInitialLine(ByteBuf buf,
HttpRequest request) |
protected void |
HttpResponseEncoder.encodeInitialLine(ByteBuf buf,
HttpResponse response) |
Constructor and Description |
---|
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
ByteBuf content) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
ByteBuf content) |
DefaultHttpContent(ByteBuf content)
Creates a new instance with the specified chunk content.
|
DefaultLastHttpContent(ByteBuf content) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
MixedFileUpload.content() |
ByteBuf |
MixedAttribute.content() |
ByteBuf |
AbstractHttpData.content() |
ByteBuf |
MixedFileUpload.getByteBuf() |
ByteBuf |
MixedAttribute.getByteBuf() |
ByteBuf |
HttpData.getByteBuf()
Returns the content of the file item as a ByteBuf
|
ByteBuf |
AbstractMemoryHttpData.getByteBuf()
Utility to go from a In Memory FileUpload
to a Disk (or another implementation) FileUpload
|
ByteBuf |
AbstractDiskHttpData.getByteBuf() |
ByteBuf |
MixedFileUpload.getChunk(int length) |
ByteBuf |
MixedAttribute.getChunk(int length) |
ByteBuf |
HttpData.getChunk(int length)
Returns a ChannelBuffer for the content from the current position with at
most length read bytes, increasing the current position of the Bytes
read.
|
ByteBuf |
AbstractMemoryHttpData.getChunk(int length) |
ByteBuf |
AbstractDiskHttpData.getChunk(int length) |
Modifier and Type | Method and Description |
---|---|
void |
MixedFileUpload.addContent(ByteBuf buffer,
boolean last) |
void |
MixedAttribute.addContent(ByteBuf buffer,
boolean last) |
void |
MemoryAttribute.addContent(ByteBuf buffer,
boolean last) |
void |
HttpData.addContent(ByteBuf buffer,
boolean last)
Add the content from the ChannelBuffer
|
void |
DiskAttribute.addContent(ByteBuf buffer,
boolean last) |
void |
AbstractMemoryHttpData.addContent(ByteBuf buffer,
boolean last) |
void |
AbstractDiskHttpData.addContent(ByteBuf buffer,
boolean last) |
void |
MixedFileUpload.setContent(ByteBuf buffer) |
void |
MixedAttribute.setContent(ByteBuf buffer) |
void |
HttpData.setContent(ByteBuf buffer)
Set the content from the ChannelBuffer (erase any previous data)
|
void |
AbstractMemoryHttpData.setContent(ByteBuf buffer) |
void |
AbstractDiskHttpData.setContent(ByteBuf buffer) |
Modifier and Type | Method and Description |
---|---|
protected void |
WebSocket08FrameDecoder.checkCloseFrameBody(ChannelHandlerContext ctx,
ByteBuf buffer) |
protected void |
WebSocket08FrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
WebSocket00FrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
Constructor and Description |
---|
BinaryWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new binary frame with the specified binary data and the final fragment flag.
|
BinaryWebSocketFrame(ByteBuf binaryData)
Creates a new binary frame with the specified binary data.
|
CloseWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new close frame
|
ContinuationWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new continuation frame with the specified binary data
|
ContinuationWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData,
String aggregatedText)
Creates a new continuation frame with the specified binary data
|
ContinuationWebSocketFrame(ByteBuf binaryData)
Creates a new continuation frame with the specified binary data.
|
PingWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new ping frame with the specified binary data
|
PingWebSocketFrame(ByteBuf binaryData)
Creates a new ping frame with the specified binary data.
|
PongWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new pong frame with the specified binary data
|
PongWebSocketFrame(ByteBuf binaryData)
Creates a new pong frame with the specified binary data.
|
TextWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new text frame with the specified binary data.
|
TextWebSocketFrame(ByteBuf binaryData)
Creates a new text frame with the specified binary data.
|
WebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData) |
WebSocketFrame(ByteBuf binaryData) |
Modifier and Type | Method and Description |
---|---|
protected ByteBuf |
MarshallingDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length) |
Modifier and Type | Method and Description |
---|---|
protected Object |
MarshallingDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in) |
protected void |
CompatibleMarshallingDecoder.decode(ChannelHandlerContext ctx,
ByteBuf buffer,
List<Object> out) |
protected void |
CompatibleMarshallingDecoder.decodeLast(ChannelHandlerContext ctx,
ByteBuf buffer,
List<Object> out) |
protected void |
MarshallingEncoder.encode(ChannelHandlerContext ctx,
Object msg,
ByteBuf out) |
protected void |
CompatibleMarshallingEncoder.encode(ChannelHandlerContext ctx,
Object msg,
ByteBuf out) |
protected ByteBuf |
MarshallingDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length) |
Modifier and Type | Method and Description |
---|---|
protected void |
ProtobufVarint32FrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
ProtobufDecoder.decode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
protected void |
ProtobufVarint32LengthFieldPrepender.encode(ChannelHandlerContext ctx,
ByteBuf msg,
ByteBuf out) |
Modifier and Type | Method and Description |
---|---|
protected void |
RtspRequestEncoder.encodeInitialLine(ByteBuf buf,
HttpRequest request) |
protected void |
RtspResponseEncoder.encodeInitialLine(ByteBuf buf,
HttpResponse response) |
Modifier and Type | Method and Description |
---|---|
protected void |
SctpOutboundByteStreamHandler.encode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
Modifier and Type | Method and Description |
---|---|
protected ByteBuf |
ObjectDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length) |
Modifier and Type | Method and Description |
---|---|
protected Object |
ObjectDecoder.decode(ChannelHandlerContext ctx,
ByteBuf in) |
protected void |
ObjectEncoder.encode(ChannelHandlerContext ctx,
Serializable msg,
ByteBuf out) |
protected void |
CompatibleObjectEncoder.encode(ChannelHandlerContext ctx,
Serializable msg,
ByteBuf out) |
protected ByteBuf |
ObjectDecoder.extractFrame(ChannelHandlerContext ctx,
ByteBuf buffer,
int index,
int length) |
Modifier and Type | Method and Description |
---|---|
protected void |
SocksInitResponseDecoder.decode(ChannelHandlerContext ctx,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksInitRequestDecoder.decode(ChannelHandlerContext ctx,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksCmdResponseDecoder.decode(ChannelHandlerContext ctx,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksCmdRequestDecoder.decode(ChannelHandlerContext ctx,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksAuthResponseDecoder.decode(ChannelHandlerContext channelHandlerContext,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksAuthRequestDecoder.decode(ChannelHandlerContext ctx,
ByteBuf byteBuf,
List<Object> out) |
protected void |
SocksMessageEncoder.encode(ChannelHandlerContext ctx,
SocksMessage msg,
ByteBuf out) |
void |
UnknownSocksResponse.encodeAsByteBuf(ByteBuf byteBuf) |
void |
UnknownSocksRequest.encodeAsByteBuf(ByteBuf byteBuf) |
abstract void |
SocksMessage.encodeAsByteBuf(ByteBuf byteBuf)
Encode socks message into its byte representation and write it into byteBuf
|
void |
SocksInitResponse.encodeAsByteBuf(ByteBuf byteBuf) |
void |
SocksInitRequest.encodeAsByteBuf(ByteBuf byteBuf) |
void |
SocksCmdResponse.encodeAsByteBuf(ByteBuf byteBuf) |
void |
SocksCmdRequest.encodeAsByteBuf(ByteBuf byteBuf) |
void |
SocksAuthResponse.encodeAsByteBuf(ByteBuf byteBuf) |
void |
SocksAuthRequest.encodeAsByteBuf(ByteBuf byteBuf) |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
SpdyDataFrame.content()
Returns the data payload of this frame.
|
ByteBuf |
DefaultSpdyDataFrame.content() |
ByteBuf |
SpdyHeaderBlockRawEncoder.encode(ChannelHandlerContext ctx,
SpdyHeadersFrame frame) |
Modifier and Type | Method and Description |
---|---|
protected void |
SpdyOrHttpChooser.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
SpdyFrameDecoder.decode(ChannelHandlerContext ctx,
ByteBuf buffer,
List<Object> out) |
void |
SpdyFrameDecoder.decodeLast(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
protected void |
SpdyFrameEncoder.encode(ChannelHandlerContext ctx,
SpdyFrame msg,
ByteBuf out) |
Constructor and Description |
---|
DefaultSpdyDataFrame(int streamId,
ByteBuf data)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected void |
StringDecoder.decode(ChannelHandlerContext ctx,
ByteBuf msg,
List<Object> out) |
protected void |
StringEncoder.encode(ChannelHandlerContext ctx,
CharSequence msg,
ByteBuf out) |
Modifier and Type | Method and Description |
---|---|
protected String |
LoggingHandler.formatByteBuf(String eventName,
ByteBuf buf)
Returns a String which contains all details to log the
ByteBuf |
Modifier and Type | Method and Description |
---|---|
protected void |
SslHandler.decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out) |
static boolean |
SslHandler.isEncrypted(ByteBuf buffer)
Returns
true if the given ByteBuf is encrypted. |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
ChunkedStream.readChunk(ChannelHandlerContext ctx) |
ByteBuf |
ChunkedNioStream.readChunk(ChannelHandlerContext ctx) |
ByteBuf |
ChunkedNioFile.readChunk(ChannelHandlerContext ctx) |
ByteBuf |
ChunkedFile.readChunk(ChannelHandlerContext ctx) |
Copyright © 2008–2013 The Netty Project. All rights reserved.