| 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.aio |
NIO2-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.socket.nio |
NIO-based socket channel
API implementation - recommended for a large number of connections (>= 1000).
|
| Modifier and Type | Class and Description |
|---|---|
protected class |
AbstractChannel.AbstractUnsafe |
protected class |
AbstractServerChannel.AbstractServerUnsafe |
| Modifier and Type | Method and Description |
|---|---|
protected abstract Channel.Unsafe |
AbstractChannel.newUnsafe() |
Channel.Unsafe |
AbstractChannel.unsafe() |
Channel.Unsafe |
Channel.unsafe()
Caution for transport implementations use only!
|
| Modifier and Type | Method and Description |
|---|---|
protected Channel.Unsafe |
AbstractEmbeddedChannel.newUnsafe() |
| Modifier and Type | Method and Description |
|---|---|
protected Channel.Unsafe |
LocalServerChannel.newUnsafe() |
protected Channel.Unsafe |
LocalChannel.newUnsafe() |
| Modifier and Type | Method and Description |
|---|---|
protected Channel.Unsafe |
AioServerSocketChannel.newUnsafe() |
protected Channel.Unsafe |
AioSocketChannel.newUnsafe() |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
AbstractNioChannel.NioUnsafe |
| Modifier and Type | Class and Description |
|---|---|
protected class |
AbstractNioChannel.AbstractNioUnsafe |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.