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 Recycler.Handle |
ByteBufUtil.ThreadLocalUnsafeDirectByteBuf.handle |
private Recycler.Handle |
ByteBufUtil.ThreadLocalDirectByteBuf.handle |
private Recycler.Handle |
PooledByteBuf.recyclerHandle |
(package private) Recycler.Handle |
PoolThreadCache.MemoryRegionCache.Entry.recyclerHandle |
Constructor and Description |
---|
Entry(Recycler.Handle recyclerHandle) |
PooledByteBuf(Recycler.Handle recyclerHandle,
int maxCapacity) |
PooledDirectByteBuf(Recycler.Handle recyclerHandle,
int maxCapacity) |
PooledHeapByteBuf(Recycler.Handle recyclerHandle,
int maxCapacity) |
PooledUnsafeDirectByteBuf(Recycler.Handle recyclerHandle,
int maxCapacity) |
PooledUnsafeHeapByteBuf(Recycler.Handle recyclerHandle,
int maxCapacity) |
ThreadLocalDirectByteBuf(Recycler.Handle handle) |
ThreadLocalUnsafeDirectByteBuf(Recycler.Handle handle) |
Modifier and Type | Field and Description |
---|---|
private Recycler.Handle |
AbstractChannelHandlerContext.AbstractWriteTask.handle |
private Recycler.Handle |
ChannelOutboundBuffer.Entry.handle |
private Recycler.Handle |
PendingWriteQueue.PendingWrite.handle |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
AbstractChannelHandlerContext.AbstractWriteTask.recycle(Recycler.Handle handle) |
protected void |
AbstractChannelHandlerContext.WriteTask.recycle(Recycler.Handle handle) |
protected void |
AbstractChannelHandlerContext.WriteAndFlushTask.recycle(Recycler.Handle handle) |
Constructor and Description |
---|
AbstractWriteTask(Recycler.Handle handle) |
Entry(Recycler.Handle handle) |
PendingWrite(Recycler.Handle handle) |
WriteAndFlushTask(Recycler.Handle handle) |
WriteTask(Recycler.Handle handle) |
Modifier and Type | Field and Description |
---|---|
private Recycler.Handle |
CodecOutputList.handle |
Constructor and Description |
---|
CodecOutputList(Recycler.Handle handle) |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
Recycler.DefaultHandle |
Modifier and Type | Field and Description |
---|---|
private static Recycler.Handle |
Recycler.NOOP_HANDLE |
Modifier and Type | Method and Description |
---|---|
protected abstract T |
Recycler.newObject(Recycler.Handle handle) |
boolean |
Recycler.recycle(T o,
Recycler.Handle handle) |
Modifier and Type | Field and Description |
---|---|
private Recycler.Handle |
RecyclableArrayList.handle |
private Recycler.Handle |
PendingWrite.handle |
Constructor and Description |
---|
PendingWrite(Recycler.Handle handle) |
RecyclableArrayList(Recycler.Handle handle) |
RecyclableArrayList(Recycler.Handle handle,
int initialCapacity) |