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.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.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
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 |
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).
|
io.netty.channel.udt |
UDT Transport.
|
io.netty.channel.udt.nio |
UDT Transport for NIO Channels.
|
io.netty.channel.unix |
Unix specific transport.
|
Modifier and Type | Method and Description |
---|---|
void |
ChannelInitializerExtension.postInitializeServerListenerChannel(ServerChannel channel)
Called by
ServerBootstrap after the initialization of the given server listener channel. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractServerChannel
A skeletal server-side
Channel implementation. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractEpollServerChannel |
class |
EpollServerDomainSocketChannel |
class |
EpollServerSocketChannel
ServerSocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractKQueueServerChannel |
class |
KQueueServerDomainSocketChannel |
class |
KQueueServerSocketChannel |
Modifier and Type | Class and Description |
---|---|
class |
LocalServerChannel
A
ServerChannel for the local transport which allows in VM communication. |
Modifier and Type | Interface and Description |
---|---|
interface |
SctpServerChannel
A SCTP/IP
ServerChannel which accepts incoming SCTP/IP associations. |
Modifier and Type | Class and Description |
---|---|
class |
NioSctpServerChannel
SctpServerChannel implementation which use non-blocking mode to accept new
connections and create the NioSctpChannel for them. |
Modifier and Type | Class and Description |
---|---|
class |
OioSctpServerChannel
Deprecated.
use
NioSctpServerChannel . |
Modifier and Type | Interface and Description |
---|---|
interface |
ServerSocketChannel
A TCP/IP
ServerChannel which accepts incoming TCP/IP connections. |
Modifier and Type | Class and Description |
---|---|
class |
NioServerDomainSocketChannel
A
ServerChannel implementation which uses
NIO selector based implementation to support UNIX Domain Sockets. |
class |
NioServerSocketChannel
A
ServerSocketChannel implementation which uses
NIO selector based implementation to accept new connections. |
Modifier and Type | Method and Description |
---|---|
ServerChannel |
NioDomainSocketChannel.parent() |
Modifier and Type | Class and Description |
---|---|
class |
OioServerSocketChannel
Deprecated.
use NIO / EPOLL / KQUEUE transport.
|
Modifier and Type | Interface and Description |
---|---|
interface |
UdtServerChannel
Deprecated.
The UDT transport is no longer maintained and will be removed.
|
Modifier and Type | Class and Description |
---|---|
class |
NioUdtAcceptorChannel
Deprecated.
The UDT transport is no longer maintained and will be removed.
|
class |
NioUdtByteAcceptorChannel
Deprecated.
The UDT transport is no longer maintained and will be removed.
|
class |
NioUdtMessageAcceptorChannel
Deprecated.
The UDT transport is no longer maintained and will be removed.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ServerDomainSocketChannel
|
Copyright © 2008–2024 The Netty Project. All rights reserved.