Uses of Class
io.netty.channel.ChannelOutboundBuffer.Entry
-
Packages that use ChannelOutboundBuffer.Entry Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel. -
-
Uses of ChannelOutboundBuffer.Entry in io.netty.channel
Fields in io.netty.channel declared as ChannelOutboundBuffer.Entry Modifier and Type Field Description private ChannelOutboundBuffer.Entry
ChannelOutboundBuffer. flushedEntry
(package private) ChannelOutboundBuffer.Entry
ChannelOutboundBuffer.Entry. next
private ChannelOutboundBuffer.Entry
ChannelOutboundBuffer. tailEntry
private ChannelOutboundBuffer.Entry
ChannelOutboundBuffer. unflushedEntry
Fields in io.netty.channel with type parameters of type ChannelOutboundBuffer.Entry Modifier and Type Field Description private ObjectPool.Handle<ChannelOutboundBuffer.Entry>
ChannelOutboundBuffer.Entry. handle
private static ObjectPool<ChannelOutboundBuffer.Entry>
ChannelOutboundBuffer.Entry. RECYCLER
Methods in io.netty.channel that return ChannelOutboundBuffer.Entry Modifier and Type Method Description (package private) static ChannelOutboundBuffer.Entry
ChannelOutboundBuffer.Entry. newInstance(java.lang.Object msg, int size, long total, ChannelPromise promise)
(package private) ChannelOutboundBuffer.Entry
ChannelOutboundBuffer.Entry. recycleAndGetNext()
Methods in io.netty.channel with parameters of type ChannelOutboundBuffer.Entry Modifier and Type Method Description private boolean
ChannelOutboundBuffer. isFlushedEntry(ChannelOutboundBuffer.Entry e)
private static int
ChannelOutboundBuffer. nioBuffers(ChannelOutboundBuffer.Entry entry, ByteBuf buf, java.nio.ByteBuffer[] nioBuffers, int nioBufferCount, int maxCount)
private void
ChannelOutboundBuffer. removeEntry(ChannelOutboundBuffer.Entry e)
Constructor parameters in io.netty.channel with type arguments of type ChannelOutboundBuffer.Entry Constructor Description Entry(ObjectPool.Handle<ChannelOutboundBuffer.Entry> handle)
-