Uses of Class
io.netty.channel.ChannelOutboundBuffer
-
Packages that use ChannelOutboundBuffer Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.embedded A virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelOutboundBuffer in io.netty.bootstrap
Methods in io.netty.bootstrap with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
FailedChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty.channel
Fields in io.netty.channel declared as ChannelOutboundBuffer Modifier and Type Field Description private ChannelOutboundBuffer
PendingBytesTracker.ChannelOutboundBufferPendingBytesTracker. buffer
private ChannelOutboundBuffer
AbstractChannel.AbstractUnsafe. outboundBuffer
Fields in io.netty.channel with type parameters of type ChannelOutboundBuffer Modifier and Type Field Description private static java.util.concurrent.atomic.AtomicLongFieldUpdater<ChannelOutboundBuffer>
ChannelOutboundBuffer. TOTAL_PENDING_SIZE_UPDATER
private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<ChannelOutboundBuffer>
ChannelOutboundBuffer. UNWRITABLE_UPDATER
Methods in io.netty.channel that return ChannelOutboundBuffer Modifier and Type Method Description ChannelOutboundBuffer
AbstractChannel.AbstractUnsafe. outboundBuffer()
ChannelOutboundBuffer
Channel.Unsafe. outboundBuffer()
Returns theChannelOutboundBuffer
of theChannel
where the pending write requests are stored.Methods in io.netty.channel with parameters of type ChannelOutboundBuffer Modifier and Type Method Description private void
AbstractChannel.AbstractUnsafe. closeOutboundBufferForShutdown(ChannelPipeline pipeline, ChannelOutboundBuffer buffer, java.lang.Throwable cause)
protected abstract void
AbstractChannel. doWrite(ChannelOutboundBuffer in)
Flush the content of the given buffer to the remote peer.protected void
AbstractServerChannel. doWrite(ChannelOutboundBuffer in)
Constructors in io.netty.channel with parameters of type ChannelOutboundBuffer Constructor Description ChannelOutboundBufferPendingBytesTracker(ChannelOutboundBuffer buffer, MessageSizeEstimator.Handle estimatorHandle)
-
Uses of ChannelOutboundBuffer in io.netty.channel.embedded
Methods in io.netty.channel.embedded with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
EmbeddedChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty.channel.local
Methods in io.netty.channel.local with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
LocalChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty.channel.nio
Methods in io.netty.channel.nio with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
AbstractNioByteChannel. doWrite(ChannelOutboundBuffer in)
protected void
AbstractNioMessageChannel. doWrite(ChannelOutboundBuffer in)
protected int
AbstractNioByteChannel. doWrite0(ChannelOutboundBuffer in)
Write objects to the OS.private int
AbstractNioByteChannel. doWriteInternal(ChannelOutboundBuffer in, java.lang.Object msg)
protected abstract boolean
AbstractNioMessageChannel. doWriteMessage(java.lang.Object msg, ChannelOutboundBuffer in)
Write a message to the underlyingChannel
. -
Uses of ChannelOutboundBuffer in io.netty.channel.oio
Methods in io.netty.channel.oio with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
AbstractOioByteChannel. doWrite(ChannelOutboundBuffer in)
Deprecated. -
Uses of ChannelOutboundBuffer in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
NioSocketChannel. doWrite(ChannelOutboundBuffer in)
protected boolean
NioDatagramChannel. doWriteMessage(java.lang.Object msg, ChannelOutboundBuffer in)
protected boolean
NioServerSocketChannel. doWriteMessage(java.lang.Object msg, ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
OioDatagramChannel. doWrite(ChannelOutboundBuffer in)
Deprecated.protected void
OioServerSocketChannel. doWrite(ChannelOutboundBuffer in)
Deprecated. -
Uses of ChannelOutboundBuffer in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return ChannelOutboundBuffer Modifier and Type Method Description ChannelOutboundBuffer
AbstractHttp2StreamChannel.Http2ChannelUnsafe. outboundBuffer()
-