Package | Description |
---|---|
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.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.handler.ssl.ocsp |
Certificate validation using OCSP
|
io.netty.resolver.dns |
An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously,
which supports the queries of an arbitrary DNS record type as well.
|
Modifier and Type | Class and Description |
---|---|
class |
EpollSocketChannel
SocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
Modifier and Type | Class and Description |
---|---|
class |
KQueueSocketChannel |
Constructor and Description |
---|
DefaultSocketChannelConfig(SocketChannel channel,
Socket javaSocket)
Creates a new instance.
|
Modifier and Type | Class and Description |
---|---|
class |
NioSocketChannel
SocketChannel which uses NIO selector based implementation. |
Modifier and Type | Class and Description |
---|---|
class |
OioSocketChannel
Deprecated.
use NIO / EPOLL / KQUEUE transport.
|
Constructor and Description |
---|
DefaultOioSocketChannelConfig(SocketChannel channel,
Socket javaSocket)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ChannelFactory<SocketChannel> |
IoTransport.socketChannel() |
Modifier and Type | Method and Description |
---|---|
static IoTransport |
IoTransport.create(EventLoop eventLoop,
ChannelFactory<SocketChannel> socketChannel,
ChannelFactory<DatagramChannel> datagramChannel)
Create a new
IoTransport instance |
Modifier and Type | Method and Description |
---|---|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory)
|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory,
boolean retryOnTimeout)
|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelType(Class<? extends SocketChannel> channelType)
|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelType(Class<? extends SocketChannel> channelType,
boolean retryOnTimeout)
|
Copyright © 2008–2024 The Netty Project. All rights reserved.