| Package | Description |
|---|---|
| io.netty.bootstrap |
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
|
| 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.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).
|
| io.netty.channel.socket.oio |
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
|
| Modifier and Type | Method and Description |
|---|---|
Bootstrap |
Bootstrap.group(EventLoopGroup group) |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup group) |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup parentGroup,
EventLoopGroup childGroup) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
EventLoop |
| Modifier and Type | Class and Description |
|---|---|
class |
MultithreadEventLoopGroup |
class |
SingleThreadEventLoop |
| Modifier and Type | Method and Description |
|---|---|
EventLoopGroup |
EventLoop.parent() |
EventLoopGroup |
SingleThreadEventLoop.parent() |
| Constructor and Description |
|---|
SingleThreadEventLoop(EventLoopGroup parent,
ThreadFactory threadFactory,
ChannelTaskScheduler scheduler) |
| Modifier and Type | Class and Description |
|---|---|
class |
LocalEventLoopGroup |
| Modifier and Type | Class and Description |
|---|---|
class |
AioEventLoopGroup |
| Modifier and Type | Class and Description |
|---|---|
class |
NioEventLoopGroup |
| Modifier and Type | Class and Description |
|---|---|
class |
OioEventLoopGroup |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.