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.example.factorial | |
io.netty.example.http.cors | |
io.netty.example.http.file | |
io.netty.example.http.helloworld | |
io.netty.example.http.snoop | |
io.netty.example.http.upload | |
io.netty.example.http.websocketx.benchmarkserver |
This package contains a benchmark application for websockets.
|
io.netty.example.http.websocketx.server |
This package contains an example web socket web server.
|
io.netty.example.http2.helloworld.client | |
io.netty.example.http2.helloworld.frame.server | |
io.netty.example.http2.helloworld.multiplex.server | |
io.netty.example.http2.helloworld.server | |
io.netty.example.proxy | |
io.netty.example.securechat | |
io.netty.example.socksproxy | |
io.netty.example.spdy.client |
This package contains an example SPDY HTTP client.
|
io.netty.example.spdy.server |
This package contains an example SPDY HTTP web server.
|
io.netty.example.telnet | |
io.netty.example.worldclock | |
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 |
---|---|
void |
FactorialServerInitializer.initChannel(SocketChannel ch) |
void |
FactorialClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HttpCorsServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HttpStaticFileServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HttpHelloWorldServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HttpSnoopServerInitializer.initChannel(SocketChannel ch) |
void |
HttpSnoopClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HttpUploadServerInitializer.initChannel(SocketChannel ch) |
void |
HttpUploadClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
WebSocketServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
WebSocketServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
Http2ClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
Http2ServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
Http2ServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
Http2ServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
HexDumpProxyInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
SecureChatServerInitializer.initChannel(SocketChannel ch) |
void |
SecureChatClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
SocksServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
SpdyClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
SpdyServerInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
TelnetServerInitializer.initChannel(SocketChannel ch) |
void |
TelnetClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
void |
WorldClockServerInitializer.initChannel(SocketChannel ch) |
void |
WorldClockClientInitializer.initChannel(SocketChannel ch) |
Modifier and Type | Method and Description |
---|---|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelFactory(ChannelFactory<? extends SocketChannel> channelFactory)
|
DnsNameResolverBuilder |
DnsNameResolverBuilder.socketChannelType(Class<? extends SocketChannel> channelType)
|
Copyright © 2008–2020 The Netty Project. All rights reserved.