Uses of Class
io.netty5.channel.ChannelOutboundBuffer
-
Packages that use ChannelOutboundBuffer Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.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.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of ChannelOutboundBuffer in io.netty5.channel
Methods in io.netty5.channel that return ChannelOutboundBuffer Modifier and Type Method Description protected ChannelOutboundBuffer
AbstractChannel. outboundBuffer()
Returns theChannelOutboundBuffer
that is used by thisAbstractChannel
.Methods in io.netty5.channel with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected abstract void
AbstractChannel. doWrite(ChannelOutboundBuffer in)
Flush the content of the given buffer to the remote peer.protected void
AbstractServerChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty5.channel.embedded
Methods in io.netty5.channel.embedded with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
EmbeddedChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
EpollDatagramChannel. doWrite(ChannelOutboundBuffer in)
protected void
EpollServerSocketChannel. doWrite(ChannelOutboundBuffer in)
protected void
EpollSocketChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
KQueueDatagramChannel. doWrite(ChannelOutboundBuffer in)
protected void
KQueueServerSocketChannel. doWrite(ChannelOutboundBuffer in)
protected void
KQueueSocketChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty5.channel.local
Methods in io.netty5.channel.local with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
LocalChannel. doWrite(ChannelOutboundBuffer in)
-
Uses of ChannelOutboundBuffer in io.netty5.channel.nio
Methods in io.netty5.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.protected abstract boolean
AbstractNioMessageChannel. doWriteMessage(Object msg, ChannelOutboundBuffer in)
Write a message to the underlyingChannel
. -
Uses of ChannelOutboundBuffer in io.netty5.channel.socket.nio
Methods in io.netty5.channel.socket.nio with parameters of type ChannelOutboundBuffer Modifier and Type Method Description protected void
NioSocketChannel. doWrite(ChannelOutboundBuffer in)
protected boolean
NioDatagramChannel. doWriteMessage(Object msg, ChannelOutboundBuffer in)
protected boolean
NioServerSocketChannel. doWriteMessage(Object msg, ChannelOutboundBuffer in)
-