Uses of Class
io.netty.util.internal.RecyclableArrayList
-
Packages that use RecyclableArrayList Package Description io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.handler.ssl SSL · TLS implementation based onSSLEngine
io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of RecyclableArrayList in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type RecyclableArrayList Modifier and Type Method Description private static void
EpollDatagramChannel. addDatagramPacketToOut(DatagramPacket packet, RecyclableArrayList out)
private static void
EpollDatagramChannel. processPacketList(ChannelPipeline pipeline, EpollRecvByteAllocatorHandle handle, int bytesRead, RecyclableArrayList packetList)
private static void
EpollDatagramChannel. releaseAndRecycle(ByteBuf byteBuf, RecyclableArrayList packetList)
-
Uses of RecyclableArrayList in io.netty.handler.ssl
Fields in io.netty.handler.ssl declared as RecyclableArrayList Modifier and Type Field Description private RecyclableArrayList
ApplicationProtocolNegotiationHandler. bufferedMessages
-
Uses of RecyclableArrayList in io.netty.util.internal
Fields in io.netty.util.internal with type parameters of type RecyclableArrayList Modifier and Type Field Description private ObjectPool.Handle<RecyclableArrayList>
RecyclableArrayList. handle
private static ObjectPool<RecyclableArrayList>
RecyclableArrayList. RECYCLER
Methods in io.netty.util.internal that return RecyclableArrayList Modifier and Type Method Description static RecyclableArrayList
RecyclableArrayList. newInstance()
Create a new emptyRecyclableArrayList
instancestatic RecyclableArrayList
RecyclableArrayList. newInstance(int minCapacity)
Create a new emptyRecyclableArrayList
instance with the given capacity.Constructor parameters in io.netty.util.internal with type arguments of type RecyclableArrayList Constructor Description RecyclableArrayList(ObjectPool.Handle<RecyclableArrayList> handle)
RecyclableArrayList(ObjectPool.Handle<RecyclableArrayList> handle, int initialCapacity)
-