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. handleprivate ObjectPool.Handle<ByteBufUtil.ThreadLocalUnsafeDirectByteBuf>ByteBufUtil.ThreadLocalUnsafeDirectByteBuf. handleprivate ObjectPool.Handle<AbstractPooledDerivedByteBuf>AbstractPooledDerivedByteBuf. recyclerHandleprivate 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. handleprivate ObjectPool.Handle<ChannelOutboundBuffer.Entry>ChannelOutboundBuffer.Entry. handleprivate ObjectPool.Handle<PendingWriteQueue.PendingWrite>PendingWriteQueue.PendingWrite. handleConstructors 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. handleConstructors 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 interfaceRecycler.Handle<T>Classes in io.netty.util that implement ObjectPool.Handle Modifier and Type Class Description private static classRecycler.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. handleprivate ObjectPool.Handle<RecyclableArrayList>RecyclableArrayList. handleMethods in io.netty.util.internal with parameters of type ObjectPool.Handle Modifier and Type Method Description TObjectPool.ObjectCreator. newObject(ObjectPool.Handle<T> handle)Creates an returns a newObjectthat 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)
-