Uses of Class
io.netty.util.internal.ObjectPool
-
Packages that use ObjectPool 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.flow Package to control the flow of messages.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of ObjectPool in io.netty.buffer
Fields in io.netty.buffer declared as ObjectPool Modifier and Type Field Description private static ObjectPool<AdaptivePoolingAllocator.AdaptiveByteBuf>
AdaptivePoolingAllocator.Magazine. EVENT_LOOP_LOCAL_BUFFER_POOL
private static ObjectPool<ByteBufUtil.ThreadLocalDirectByteBuf>
ByteBufUtil.ThreadLocalDirectByteBuf. RECYCLER
private static ObjectPool<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf>
ByteBufUtil.ThreadLocalUnsafeDirectByteBuf. RECYCLER
private static ObjectPool<PooledDirectByteBuf>
PooledDirectByteBuf. RECYCLER
private static ObjectPool<PooledDuplicatedByteBuf>
PooledDuplicatedByteBuf. RECYCLER
private static ObjectPool<PooledHeapByteBuf>
PooledHeapByteBuf. RECYCLER
private static ObjectPool<PooledSlicedByteBuf>
PooledSlicedByteBuf. RECYCLER
private static ObjectPool<PooledUnsafeDirectByteBuf>
PooledUnsafeDirectByteBuf. RECYCLER
private static ObjectPool<PooledUnsafeHeapByteBuf>
PooledUnsafeHeapByteBuf. RECYCLER
private static ObjectPool<PoolThreadCache.MemoryRegionCache.Entry>
PoolThreadCache.MemoryRegionCache. RECYCLER
-
Uses of ObjectPool in io.netty.channel
Fields in io.netty.channel declared as ObjectPool Modifier and Type Field Description private static ObjectPool<AbstractChannelHandlerContext.WriteTask>
AbstractChannelHandlerContext.WriteTask. RECYCLER
private static ObjectPool<ChannelOutboundBuffer.Entry>
ChannelOutboundBuffer.Entry. RECYCLER
private static ObjectPool<PendingWriteQueue.PendingWrite>
PendingWriteQueue.PendingWrite. RECYCLER
-
Uses of ObjectPool in io.netty.handler.flow
Fields in io.netty.handler.flow declared as ObjectPool Modifier and Type Field Description private static ObjectPool<FlowControlHandler.RecyclableArrayDeque>
FlowControlHandler.RecyclableArrayDeque. RECYCLER
-
Uses of ObjectPool in io.netty.util.internal
Subclasses of ObjectPool in io.netty.util.internal Modifier and Type Class Description private static class
ObjectPool.RecyclerObjectPool<T>
Fields in io.netty.util.internal declared as ObjectPool Modifier and Type Field Description private static ObjectPool<PendingWrite>
PendingWrite. RECYCLER
private static ObjectPool<RecyclableArrayList>
RecyclableArrayList. RECYCLER
Methods in io.netty.util.internal that return ObjectPool Modifier and Type Method Description static <T> ObjectPool<T>
ObjectPool. newPool(ObjectPool.ObjectCreator<T> creator)
Creates a newObjectPool
which will use the givenObjectPool.ObjectCreator
to create theObject
that should be pooled.
-