| 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.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.util.concurrent |
Utility classes for concurrent / async tasks.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventLoop
Skeletal implementation of
EventLoop. |
class |
DefaultEventLoop |
class |
SingleThreadEventLoop
Abstract base class for
EventLoops that execute all its submitted tasks in a single thread. |
class |
ThreadPerChannelEventLoop
SingleThreadEventLoop which is used to handle OIO Channel's. |
| Modifier and Type | Class and Description |
|---|---|
class |
NioEventLoop
A
SingleThreadEventLoop implementation which registers each Channel with a
NIO Selector and performs the multiplexing of these in the event loop. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractScheduledEventExecutor
Abstract base class for
EventExecutors that want to support scheduling. |
class |
DefaultEventExecutor
Default
SingleThreadEventExecutor implementation which just execute all submitted task in a
serial fashion. |
class |
GlobalEventExecutor
Single-thread singleton
EventExecutor. |
class |
ImmediateEventExecutor
AbstractEventExecutor which execute tasks in the callers thread. |
class |
SingleThreadEventExecutor
Abstract base class for
EventExecutor's that execute all its submitted tasks in a single thread. |
Copyright © 2008–2015 The Netty Project. All rights reserved.