Uses of Class
io.netty.channel.AbstractChannel
-
Packages that use AbstractChannel 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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.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.sctp.nio NIO-based SCTP Channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.sctp.oio Old blocking I/O based SCTP 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). -
-
Uses of AbstractChannel in io.netty.bootstrap
Subclasses of AbstractChannel in io.netty.bootstrap Modifier and Type Class Description (package private) class
FailedChannel
-
Uses of AbstractChannel in io.netty.channel
Subclasses of AbstractChannel in io.netty.channel Modifier and Type Class Description class
AbstractServerChannel
A skeletal server-sideChannel
implementation.Constructors in io.netty.channel with parameters of type AbstractChannel Constructor Description ChannelOutboundBuffer(AbstractChannel channel)
CloseFuture(AbstractChannel ch)
-
Uses of AbstractChannel in io.netty.channel.embedded
Subclasses of AbstractChannel in io.netty.channel.embedded Modifier and Type Class Description class
EmbeddedChannel
Base class forChannel
implementations that are used in an embedded fashion. -
Uses of AbstractChannel in io.netty.channel.epoll
Subclasses of AbstractChannel in io.netty.channel.epoll Modifier and Type Class Description (package private) class
AbstractEpollChannel
class
AbstractEpollServerChannel
class
AbstractEpollStreamChannel
class
EpollDatagramChannel
DatagramChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollDomainDatagramChannel
class
EpollDomainSocketChannel
class
EpollServerDomainSocketChannel
class
EpollServerSocketChannel
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.class
EpollSocketChannel
SocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance. -
Uses of AbstractChannel in io.netty.channel.kqueue
Subclasses of AbstractChannel in io.netty.channel.kqueue Modifier and Type Class Description (package private) class
AbstractKQueueChannel
(package private) class
AbstractKQueueDatagramChannel
class
AbstractKQueueServerChannel
class
AbstractKQueueStreamChannel
class
KQueueDatagramChannel
class
KQueueDomainDatagramChannel
class
KQueueDomainSocketChannel
class
KQueueServerDomainSocketChannel
class
KQueueServerSocketChannel
class
KQueueSocketChannel
-
Uses of AbstractChannel in io.netty.channel.local
Subclasses of AbstractChannel in io.netty.channel.local Modifier and Type Class Description class
LocalChannel
AChannel
for the local transport.class
LocalServerChannel
AServerChannel
for the local transport which allows in VM communication. -
Uses of AbstractChannel in io.netty.channel.nio
Subclasses of AbstractChannel in io.netty.channel.nio Modifier and Type Class Description class
AbstractNioByteChannel
AbstractNioChannel
base class forChannel
s that operate on bytes.class
AbstractNioChannel
Abstract base class forChannel
implementations which use a Selector based approach.class
AbstractNioMessageChannel
AbstractNioChannel
base class forChannel
s that operate on messages. -
Uses of AbstractChannel in io.netty.channel.oio
Subclasses of AbstractChannel in io.netty.channel.oio Modifier and Type Class Description class
AbstractOioByteChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.class
AbstractOioChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.class
AbstractOioMessageChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.class
OioByteStreamChannel
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of AbstractChannel in io.netty.channel.sctp.nio
Subclasses of AbstractChannel in io.netty.channel.sctp.nio Modifier and Type Class Description class
NioSctpChannel
SctpChannel
implementation which use non-blocking mode and allows to read / writeSctpMessage
s to the underlyingSctpChannel
.class
NioSctpServerChannel
SctpServerChannel
implementation which use non-blocking mode to accept new connections and create theNioSctpChannel
for them. -
Uses of AbstractChannel in io.netty.channel.sctp.oio
Subclasses of AbstractChannel in io.netty.channel.sctp.oio Modifier and Type Class Description class
OioSctpChannel
Deprecated.useNioSctpChannel
.class
OioSctpServerChannel
Deprecated.useNioSctpServerChannel
. -
Uses of AbstractChannel in io.netty.channel.socket.nio
Subclasses of AbstractChannel in io.netty.channel.socket.nio Modifier and Type Class Description class
NioDatagramChannel
An NIO datagramChannel
that sends and receives anAddressedEnvelope
.class
NioDomainSocketChannel
DuplexChannel
which uses NIO selector based implementation to support UNIX Domain Sockets.class
NioServerDomainSocketChannel
AServerChannel
implementation which uses NIO selector based implementation to support UNIX Domain Sockets.class
NioServerSocketChannel
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.class
NioSocketChannel
SocketChannel
which uses NIO selector based implementation. -
Uses of AbstractChannel in io.netty.channel.socket.oio
Subclasses of AbstractChannel in io.netty.channel.socket.oio Modifier and Type Class Description class
OioDatagramChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.class
OioServerSocketChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.class
OioSocketChannel
Deprecated.use NIO / EPOLL / KQUEUE transport.
-