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<ByteBufUtil.ThreadLocalDirectByteBuf>ByteBufUtil.ThreadLocalDirectByteBuf. RECYCLERprivate static ObjectPool<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf>ByteBufUtil.ThreadLocalUnsafeDirectByteBuf. RECYCLERprivate static ObjectPool<PooledDirectByteBuf>PooledDirectByteBuf. RECYCLERprivate static ObjectPool<PooledDuplicatedByteBuf>PooledDuplicatedByteBuf. RECYCLERprivate static ObjectPool<PooledHeapByteBuf>PooledHeapByteBuf. RECYCLERprivate static ObjectPool<PooledSlicedByteBuf>PooledSlicedByteBuf. RECYCLERprivate static ObjectPool<PooledUnsafeDirectByteBuf>PooledUnsafeDirectByteBuf. RECYCLERprivate static ObjectPool<PooledUnsafeHeapByteBuf>PooledUnsafeHeapByteBuf. RECYCLERprivate 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. RECYCLERprivate static ObjectPool<ChannelOutboundBuffer.Entry>ChannelOutboundBuffer.Entry. RECYCLERprivate 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 classObjectPool.RecyclerObjectPool<T>Fields in io.netty.util.internal declared as ObjectPool Modifier and Type Field Description private static ObjectPool<PendingWrite>PendingWrite. RECYCLERprivate static ObjectPool<RecyclableArrayList>RecyclableArrayList. RECYCLERMethods 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 newObjectPoolwhich will use the givenObjectPool.ObjectCreatorto create theObjectthat should be pooled.
-