Uses of Class
io.netty.util.internal.ObjectPool
Packages that use ObjectPool
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Package to control the flow of messages.
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 ObjectPoolModifier and TypeFieldDescriptionprivate static final ObjectPool
<AdaptivePoolingAllocator.AdaptiveByteBuf> AdaptivePoolingAllocator.Magazine.EVENT_LOOP_LOCAL_BUFFER_POOL
private static final ObjectPool
<ByteBufUtil.ThreadLocalDirectByteBuf> ByteBufUtil.ThreadLocalDirectByteBuf.RECYCLER
private static final ObjectPool
<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf> ByteBufUtil.ThreadLocalUnsafeDirectByteBuf.RECYCLER
private static final ObjectPool
<PooledDirectByteBuf> PooledDirectByteBuf.RECYCLER
private static final ObjectPool
<PooledDuplicatedByteBuf> PooledDuplicatedByteBuf.RECYCLER
private static final ObjectPool
<PooledHeapByteBuf> PooledHeapByteBuf.RECYCLER
private static final ObjectPool
<PooledSlicedByteBuf> PooledSlicedByteBuf.RECYCLER
private static final ObjectPool
<PooledUnsafeDirectByteBuf> PooledUnsafeDirectByteBuf.RECYCLER
private static final ObjectPool
<PooledUnsafeHeapByteBuf> PooledUnsafeHeapByteBuf.RECYCLER
private static final ObjectPool
<PoolThreadCache.MemoryRegionCache.Entry> PoolThreadCache.MemoryRegionCache.RECYCLER
-
Uses of ObjectPool in io.netty.channel
Fields in io.netty.channel declared as ObjectPoolModifier and TypeFieldDescriptionprivate static final ObjectPool
<AbstractChannelHandlerContext.WriteTask> AbstractChannelHandlerContext.WriteTask.RECYCLER
private static final ObjectPool
<ChannelOutboundBuffer.Entry> ChannelOutboundBuffer.Entry.RECYCLER
private static final ObjectPool
<PendingWriteQueue.PendingWrite> PendingWriteQueue.PendingWrite.RECYCLER
-
Uses of ObjectPool in io.netty.handler.flow
Fields in io.netty.handler.flow declared as ObjectPoolModifier and TypeFieldDescriptionprivate static final ObjectPool
<FlowControlHandler.RecyclableArrayDeque> FlowControlHandler.RecyclableArrayDeque.RECYCLER
-
Uses of ObjectPool in io.netty.util.internal
Subclasses of ObjectPool in io.netty.util.internalFields in io.netty.util.internal declared as ObjectPoolModifier and TypeFieldDescriptionprivate static final ObjectPool
<PendingWrite> PendingWrite.RECYCLER
private static final ObjectPool
<RecyclableArrayList> RecyclableArrayList.RECYCLER
Methods in io.netty.util.internal that return ObjectPoolModifier and TypeMethodDescriptionstatic <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.