| 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.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 | Method and Description |
|---|---|
protected EventExecutor |
DefaultEventExecutorGroup.newChild(ThreadFactory threadFactory,
ChannelTaskScheduler scheduler,
Object... args) |
protected abstract EventExecutor |
MultithreadEventExecutorGroup.newChild(ThreadFactory threadFactory,
ChannelTaskScheduler scheduler,
Object... args) |
| Constructor and Description |
|---|
SingleThreadEventExecutor(EventExecutorGroup parent,
ThreadFactory threadFactory,
ChannelTaskScheduler scheduler) |
SingleThreadEventLoop(EventLoopGroup parent,
ThreadFactory threadFactory,
ChannelTaskScheduler scheduler) |
| Modifier and Type | Method and Description |
|---|---|
protected EventExecutor |
LocalEventLoopGroup.newChild(ThreadFactory threadFactory,
ChannelTaskScheduler scheduler,
Object... args) |
| Modifier and Type | Method and Description |
|---|---|
protected EventExecutor |
AioEventLoopGroup.newChild(ThreadFactory threadFactory,
ChannelTaskScheduler scheduler,
Object... args) |
| Modifier and Type | Method and Description |
|---|---|
protected EventExecutor |
NioEventLoopGroup.newChild(ThreadFactory threadFactory,
ChannelTaskScheduler scheduler,
Object... args) |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.