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<ByteBufUtil.ThreadLocalDirectByteBuf> ByteBufUtil.ThreadLocalDirectByteBuf.RECYCLERprivate static final ObjectPool<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf> ByteBufUtil.ThreadLocalUnsafeDirectByteBuf.RECYCLERprivate static final ObjectPool<PooledDirectByteBuf> PooledDirectByteBuf.RECYCLERprivate static final ObjectPool<PooledDuplicatedByteBuf> PooledDuplicatedByteBuf.RECYCLERprivate static final ObjectPool<PooledHeapByteBuf> PooledHeapByteBuf.RECYCLERprivate static final ObjectPool<PooledSlicedByteBuf> PooledSlicedByteBuf.RECYCLERprivate static final ObjectPool<PooledUnsafeDirectByteBuf> PooledUnsafeDirectByteBuf.RECYCLERprivate static final ObjectPool<PooledUnsafeHeapByteBuf> PooledUnsafeHeapByteBuf.RECYCLERprivate 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.RECYCLERprivate static final ObjectPool<ChannelOutboundBuffer.Entry> ChannelOutboundBuffer.Entry.RECYCLERprivate 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.RECYCLERprivate static final ObjectPool<RecyclableArrayList> RecyclableArrayList.RECYCLERMethods in io.netty.util.internal that return ObjectPoolModifier and TypeMethodDescriptionstatic <T> ObjectPool<T> ObjectPool.newPool(ObjectPool.ObjectCreator<T> creator) Creates a newObjectPoolwhich will use the givenObjectPool.ObjectCreatorto create theObjectthat should be pooled.