Uses of Interface
io.netty.channel.ServerChannel
-
Packages that use ServerChannel 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.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.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 ServerChannel in io.netty.bootstrap
Methods in io.netty.bootstrap with parameters of type ServerChannel Modifier and Type Method Description voidChannelInitializerExtension. postInitializeServerListenerChannel(ServerChannel channel)Called byServerBootstrapafter the initialization of the given server listener channel. -
Uses of ServerChannel in io.netty.channel
Classes in io.netty.channel that implement ServerChannel Modifier and Type Class Description classAbstractServerChannelA skeletal server-sideChannelimplementation. -
Uses of ServerChannel in io.netty.channel.local
Classes in io.netty.channel.local that implement ServerChannel Modifier and Type Class Description classLocalServerChannelAServerChannelfor the local transport which allows in VM communication. -
Uses of ServerChannel in io.netty.channel.socket
Subinterfaces of ServerChannel in io.netty.channel.socket Modifier and Type Interface Description interfaceServerSocketChannelA TCP/IPServerChannelwhich accepts incoming TCP/IP connections. -
Uses of ServerChannel in io.netty.channel.socket.nio
Classes in io.netty.channel.socket.nio that implement ServerChannel Modifier and Type Class Description classNioServerDomainSocketChannelAServerChannelimplementation which uses NIO selector based implementation to support UNIX Domain Sockets.classNioServerSocketChannelAServerSocketChannelimplementation which uses NIO selector based implementation to accept new connections.Methods in io.netty.channel.socket.nio that return ServerChannel Modifier and Type Method Description ServerChannelNioDomainSocketChannel. parent() -
Uses of ServerChannel in io.netty.channel.socket.oio
Classes in io.netty.channel.socket.oio that implement ServerChannel Modifier and Type Class Description classOioServerSocketChannelDeprecated.use NIO / EPOLL / KQUEUE transport.
-