Uses of Class
io.netty.channel.AbstractChannel
Packages that use AbstractChannel
Package
Description
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
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).
-
Uses of AbstractChannel in io.netty.bootstrap
Subclasses of AbstractChannel in io.netty.bootstrap -
Uses of AbstractChannel in io.netty.channel
Subclasses of AbstractChannel in io.netty.channelConstructors in io.netty.channel with parameters of type AbstractChannelModifierConstructorDescription(package private)
ChannelOutboundBuffer
(AbstractChannel channel) (package private)
-
Uses of AbstractChannel in io.netty.channel.embedded
Subclasses of AbstractChannel in io.netty.channel.embeddedModifier and TypeClassDescriptionclass
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.epollModifier and TypeClassDescription(package private) class
class
class
final class
DatagramChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.final class
final class
final class
final class
ServerSocketChannel
implementation that uses linux EPOLL Edge-Triggered Mode for maximal performance.final class
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.kqueueModifier and TypeClassDescription(package private) class
(package private) class
class
class
final class
final class
final class
final class
final class
final class
-
Uses of AbstractChannel in io.netty.channel.local
Subclasses of AbstractChannel in io.netty.channel.localModifier and TypeClassDescriptionclass
AChannel
for the local transport.class
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.nioModifier and TypeClassDescriptionclass
AbstractNioChannel
base class forChannel
s that operate on bytes.class
Abstract base class forChannel
implementations which use a Selector based approach.class
AbstractNioChannel
base class forChannel
s that operate on messages. -
Uses of AbstractChannel in io.netty.channel.oio
Subclasses of AbstractChannel in io.netty.channel.oioModifier and TypeClassDescriptionclass
Deprecated.use NIO / EPOLL / KQUEUE transport.class
Deprecated.use NIO / EPOLL / KQUEUE transport.class
Deprecated.use NIO / EPOLL / KQUEUE transport.class
Deprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of AbstractChannel in io.netty.channel.sctp.nio
Subclasses of AbstractChannel in io.netty.channel.sctp.nioModifier and TypeClassDescriptionclass
SctpChannel
implementation which use non-blocking mode and allows to read / writeSctpMessage
s to the underlyingSctpChannel
.class
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.oioModifier and TypeClassDescriptionclass
Deprecated.useNioSctpChannel
.class
Deprecated.useNioSctpServerChannel
. -
Uses of AbstractChannel in io.netty.channel.socket.nio
Subclasses of AbstractChannel in io.netty.channel.socket.nioModifier and TypeClassDescriptionfinal class
An NIO datagramChannel
that sends and receives anAddressedEnvelopeinvalid input: '<'ByteBuf, SocketAddress>
.final class
DuplexChannel
which uses NIO selector based implementation to support UNIX Domain Sockets.final class
AServerChannel
implementation which uses NIO selector based implementation to support UNIX Domain Sockets.class
AServerSocketChannel
implementation which uses NIO selector based implementation to accept new connections.class
SocketChannel
which uses NIO selector based implementation. -
Uses of AbstractChannel in io.netty.channel.socket.oio
Subclasses of AbstractChannel in io.netty.channel.socket.oioModifier and TypeClassDescriptionclass
Deprecated.use NIO / EPOLL / KQUEUE transport.class
Deprecated.use NIO / EPOLL / KQUEUE transport.class
Deprecated.use NIO / EPOLL / KQUEUE transport.