| Package | Description |
|---|---|
| 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.embedded |
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context. |
| 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.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultChannelConfig
The default
SocketChannelConfig implementation. |
| Modifier and Type | Method and Description |
|---|---|
ChannelConfig |
Channel.config()
Returns the configuration of this channel.
|
| Modifier and Type | Method and Description |
|---|---|
ChannelConfig |
AbstractEmbeddedChannel.config() |
| Modifier and Type | Method and Description |
|---|---|
ChannelConfig |
LocalServerChannel.config() |
ChannelConfig |
LocalChannel.config() |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DatagramChannelConfig
A
ChannelConfig for a DatagramChannel. |
interface |
ServerSocketChannelConfig
A
ChannelConfig for a ServerSocketChannel. |
interface |
SocketChannelConfig
A
ChannelConfig for a SocketChannel. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultDatagramChannelConfig
The default
DatagramChannelConfig implementation. |
class |
DefaultServerSocketChannelConfig
The default
ServerSocketChannelConfig implementation. |
class |
DefaultSocketChannelConfig
The default
SocketChannelConfig implementation. |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.