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.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.util |
Utility classes used across multiple packages.
|
io.netty.util.internal |
Internal-use-only utilities which is not allowed to be used
outside Netty.
|
Modifier and Type | Field and Description |
---|---|
private static Recycler<PooledUnsafeHeapByteBuf> |
PooledUnsafeHeapByteBuf.RECYCLER |
private static Recycler<PoolThreadCache.MemoryRegionCache.Entry> |
PoolThreadCache.MemoryRegionCache.RECYCLER |
private static Recycler<PooledDirectByteBuf> |
PooledDirectByteBuf.RECYCLER |
private static Recycler<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf> |
ByteBufUtil.ThreadLocalUnsafeDirectByteBuf.RECYCLER |
private static Recycler<ByteBufUtil.ThreadLocalDirectByteBuf> |
ByteBufUtil.ThreadLocalDirectByteBuf.RECYCLER |
private static Recycler<PooledHeapByteBuf> |
PooledHeapByteBuf.RECYCLER |
private static Recycler<PooledUnsafeDirectByteBuf> |
PooledUnsafeDirectByteBuf.RECYCLER |
Modifier and Type | Method and Description |
---|---|
protected Recycler<?> |
PooledUnsafeHeapByteBuf.recycler() |
protected Recycler<?> |
PooledDirectByteBuf.recycler() |
protected Recycler<?> |
PooledHeapByteBuf.recycler() |
protected abstract Recycler<?> |
PooledByteBuf.recycler() |
protected Recycler<?> |
PooledUnsafeDirectByteBuf.recycler() |
Modifier and Type | Field and Description |
---|---|
private static Recycler<ChannelOutboundBuffer.Entry> |
ChannelOutboundBuffer.Entry.RECYCLER |
private static Recycler<AbstractChannelHandlerContext.WriteTask> |
AbstractChannelHandlerContext.WriteTask.RECYCLER |
private static Recycler<AbstractChannelHandlerContext.WriteAndFlushTask> |
AbstractChannelHandlerContext.WriteAndFlushTask.RECYCLER |
private static Recycler<PendingWriteQueue.PendingWrite> |
PendingWriteQueue.PendingWrite.RECYCLER |
Modifier and Type | Field and Description |
---|---|
private static Recycler<CodecOutputList> |
CodecOutputList.RECYCLER |
Modifier and Type | Field and Description |
---|---|
(package private) Recycler<T> |
Recycler.Stack.parent |
Constructor and Description |
---|
Stack(Recycler<T> parent,
java.lang.Thread thread,
int maxCapacity,
int maxSharedCapacityFactor,
int ratioMask,
int maxDelayedQueues) |
Modifier and Type | Field and Description |
---|---|
private static Recycler<PendingWrite> |
PendingWrite.RECYCLER |
private static Recycler<RecyclableArrayList> |
RecyclableArrayList.RECYCLER |