| 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).
|
| 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 |
LocalServerChannel
A
ServerChannel for the local transport which allows in VM communication. |
| 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.
|
Copyright © 2008–2025 The Netty Project. All rights reserved.