Package | Description |
---|---|
io.netty.channel.epoll |
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
|
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.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.testsuite.websockets.autobahn |
This package is intended for use with testing against the Python
AutoBahn test suite.
|
Modifier and Type | Class and Description |
---|---|
class |
EpollSocketChannel
SocketChannel implementation that uses linux EPOLL Edge-Triggered Mode for
maximal performance. |
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
A
SocketChannel which is using Old-Blocking-IO |
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 |
HttpUploadClientIntializer.initChannel(SocketChannel ch) |
void |
HttpUploadServerInitializer.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 |
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 socketChannel) |
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 |
---|---|
void |
AutobahnServerInitializer.initChannel(SocketChannel ch) |
Copyright © 2008–2016 The Netty Project. All rights reserved.