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 virtualChannelthat 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). -
-
Uses of AbstractChannel in io.netty.bootstrap
Subclasses of AbstractChannel in io.netty.bootstrap Modifier and Type Class Description (package private) classFailedChannel -
Uses of AbstractChannel in io.netty.channel
Subclasses of AbstractChannel in io.netty.channel Modifier and Type Class Description classAbstractServerChannelA skeletal server-sideChannelimplementation.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 classEmbeddedChannelBase class forChannelimplementations that are used in an embedded fashion. -
Uses of AbstractChannel in io.netty.channel.local
Subclasses of AbstractChannel in io.netty.channel.local Modifier and Type Class Description classLocalChannelAChannelfor the local transport.classLocalServerChannelAServerChannelfor 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 classAbstractNioByteChannelAbstractNioChannelbase class forChannels that operate on bytes.classAbstractNioChannelAbstract base class forChannelimplementations which use a Selector based approach.classAbstractNioMessageChannelAbstractNioChannelbase class forChannels 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 classAbstractOioByteChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classAbstractOioMessageChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioByteStreamChannelDeprecated.use NIO / EPOLL / KQUEUE transport. -
Uses of AbstractChannel in io.netty.channel.socket.nio
Subclasses of AbstractChannel in io.netty.channel.socket.nio Modifier and Type Class Description classNioDatagramChannelAn NIO datagramChannelthat sends and receives anAddressedEnvelope.classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.classNioSocketChannelSocketChannelwhich 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 classOioDatagramChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.classOioSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.
-