Uses of Class
io.netty.channel.ChannelOutboundBuffer
Packages that use ChannelOutboundBuffer
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
A virtual transport that enables the communication between the two
parties in the same virtual machine.
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based SCTP channel API implementation - recommended for
a small number of connections (< 1000).
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
UDT Transport for NIO Channels.
-
Uses of ChannelOutboundBuffer in io.netty.channel
Methods in io.netty.channel that return ChannelOutboundBufferModifier and TypeMethodDescriptionfinal ChannelOutboundBufferAbstractChannel.AbstractUnsafe.outboundBuffer()Channel.Unsafe.outboundBuffer()Returns theChannelOutboundBufferof theChannelwhere the pending write requests are stored.Methods in io.netty.channel with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected abstract voidAbstractChannel.doWrite(ChannelOutboundBuffer in) Flush the content of the given buffer to the remote peer.protected voidAbstractServerChannel.doWrite(ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.embedded
Methods in io.netty.channel.embedded with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidEmbeddedChannel.doWrite(ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidAbstractEpollServerChannel.doWrite(ChannelOutboundBuffer in) protected voidAbstractEpollStreamChannel.doWrite(ChannelOutboundBuffer in) protected voidEpollDatagramChannel.doWrite(ChannelOutboundBuffer in) protected voidEpollDomainDatagramChannel.doWrite(ChannelOutboundBuffer in) protected intAbstractEpollStreamChannel.doWriteSingle(ChannelOutboundBuffer in) Attempt to write a single object.protected intEpollDomainSocketChannel.doWriteSingle(ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.kqueue
Methods in io.netty.channel.kqueue with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidAbstractKQueueServerChannel.doWrite(ChannelOutboundBuffer in) protected voidAbstractKQueueStreamChannel.doWrite(ChannelOutboundBuffer in) protected intAbstractKQueueStreamChannel.doWriteSingle(ChannelOutboundBuffer in) Attempt to write a single object.protected intKQueueDomainSocketChannel.doWriteSingle(ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.local
Methods in io.netty.channel.local with parameters of type ChannelOutboundBuffer -
Uses of ChannelOutboundBuffer in io.netty.channel.nio
Methods in io.netty.channel.nio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidAbstractNioByteChannel.doWrite(ChannelOutboundBuffer in) protected voidAbstractNioMessageChannel.doWrite(ChannelOutboundBuffer in) protected final intAbstractNioByteChannel.doWrite0(ChannelOutboundBuffer in) Write objects to the OS.protected abstract booleanAbstractNioMessageChannel.doWriteMessage(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 ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidAbstractOioByteChannel.doWrite(ChannelOutboundBuffer in) Deprecated. -
Uses of ChannelOutboundBuffer in io.netty.channel.sctp.nio
Methods in io.netty.channel.sctp.nio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected booleanNioSctpChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) protected booleanNioSctpServerChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.sctp.oio
Methods in io.netty.channel.sctp.oio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidOioSctpChannel.doWrite(ChannelOutboundBuffer in) Deprecated.protected voidOioSctpServerChannel.doWrite(ChannelOutboundBuffer in) Deprecated. -
Uses of ChannelOutboundBuffer in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidNioDomainSocketChannel.doWrite(ChannelOutboundBuffer in) protected voidNioSocketChannel.doWrite(ChannelOutboundBuffer in) protected booleanNioDatagramChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) protected booleanNioServerDomainSocketChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) protected booleanNioServerSocketChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) -
Uses of ChannelOutboundBuffer in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected voidOioDatagramChannel.doWrite(ChannelOutboundBuffer in) Deprecated.protected voidOioServerSocketChannel.doWrite(ChannelOutboundBuffer in) Deprecated. -
Uses of ChannelOutboundBuffer in io.netty.channel.udt.nio
Methods in io.netty.channel.udt.nio with parameters of type ChannelOutboundBufferModifier and TypeMethodDescriptionprotected booleanNioUdtAcceptorChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) Deprecated.protected booleanNioUdtMessageConnectorChannel.doWriteMessage(Object msg, ChannelOutboundBuffer in) Deprecated.