Uses of Interface
io.netty.util.internal.ObjectPool.Handle
-
Packages that use ObjectPool.Handle 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 Utility classes used across multiple packages.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of ObjectPool.Handle in io.netty.buffer
Fields in io.netty.buffer declared as ObjectPool.Handle Modifier and Type Field Description private ObjectPool.Handle<ByteBufUtil.ThreadLocalDirectByteBuf>
ByteBufUtil.ThreadLocalDirectByteBuf. handle
private ObjectPool.Handle<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf>
ByteBufUtil.ThreadLocalUnsafeDirectByteBuf. handle
private ObjectPool.Handle<AbstractPooledDerivedByteBuf>
AbstractPooledDerivedByteBuf. recyclerHandle
private ObjectPool.Handle<PooledByteBuf<T>>
PooledByteBuf. recyclerHandle
(package private) ObjectPool.Handle<PoolThreadCache.MemoryRegionCache.Entry<?>>
PoolThreadCache.MemoryRegionCache.Entry. recyclerHandle
-
Uses of ObjectPool.Handle in io.netty.channel
Fields in io.netty.channel declared as ObjectPool.Handle Modifier and Type Field Description private ObjectPool.Handle<AbstractChannelHandlerContext.WriteTask>
AbstractChannelHandlerContext.WriteTask. handle
private ObjectPool.Handle<ChannelOutboundBuffer.Entry>
ChannelOutboundBuffer.Entry. handle
private ObjectPool.Handle<PendingWriteQueue.PendingWrite>
PendingWriteQueue.PendingWrite. handle
Constructors in io.netty.channel with parameters of type ObjectPool.Handle Constructor Description Entry(ObjectPool.Handle<ChannelOutboundBuffer.Entry> handle)
PendingWrite(ObjectPool.Handle<PendingWriteQueue.PendingWrite> handle)
WriteTask(ObjectPool.Handle<? extends AbstractChannelHandlerContext.WriteTask> handle)
-
Uses of ObjectPool.Handle in io.netty.handler.flow
Fields in io.netty.handler.flow declared as ObjectPool.Handle Modifier and Type Field Description private ObjectPool.Handle<FlowControlHandler.RecyclableArrayDeque>
FlowControlHandler.RecyclableArrayDeque. handle
Constructors in io.netty.handler.flow with parameters of type ObjectPool.Handle Constructor Description RecyclableArrayDeque(int numElements, ObjectPool.Handle<FlowControlHandler.RecyclableArrayDeque> handle)
-
Uses of ObjectPool.Handle in io.netty.util
Subinterfaces of ObjectPool.Handle in io.netty.util Modifier and Type Interface Description static interface
Recycler.Handle<T>
Classes in io.netty.util that implement ObjectPool.Handle Modifier and Type Class Description private static class
Recycler.DefaultHandle<T>
-
Uses of ObjectPool.Handle in io.netty.util.internal
Fields in io.netty.util.internal declared as ObjectPool.Handle Modifier and Type Field Description private ObjectPool.Handle<PendingWrite>
PendingWrite. handle
private ObjectPool.Handle<RecyclableArrayList>
RecyclableArrayList. handle
Methods in io.netty.util.internal with parameters of type ObjectPool.Handle Modifier and Type Method Description T
ObjectPool.ObjectCreator. newObject(ObjectPool.Handle<T> handle)
Creates an returns a newObject
that can be used and later recycled viarecycle(Object)
.Constructors in io.netty.util.internal with parameters of type ObjectPool.Handle Constructor Description PendingWrite(ObjectPool.Handle<PendingWrite> handle)
RecyclableArrayList(ObjectPool.Handle<RecyclableArrayList> handle)
RecyclableArrayList(ObjectPool.Handle<RecyclableArrayList> handle, int initialCapacity)
-