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.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.channel.oio |
Old blocking I/O based channel API implementation - recommended for
a small number of connections (< 1000).
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEventLoop
Skeletal implementation of
EventLoop . |
class |
DefaultEventLoop |
class |
SingleThreadEventLoop
Abstract base class for
EventLoop s that execute all its submitted tasks in a single thread. |
class |
ThreadPerChannelEventLoop
Deprecated.
this will be remove in the next-major release.
|
Modifier and Type | Method and Description |
---|---|
EventLoop |
Channel.eventLoop()
|
EventLoop |
AbstractChannel.eventLoop() |
protected abstract EventLoop |
MultithreadEventLoopGroup.newChild(Executor executor,
Object... args) |
protected EventLoop |
DefaultEventLoopGroup.newChild(Executor executor,
Object... args) |
protected EventLoop |
ThreadPerChannelEventLoopGroup.newChild(Object... args)
Deprecated.
Creates a new
EventLoop . |
EventLoop |
AbstractEventLoop.next() |
EventLoop |
EventLoopGroup.next()
Return the next
EventLoop to use |
EventLoop |
SingleThreadEventLoop.next() |
abstract EventLoop |
AbstractEventLoopGroup.next() |
EventLoop |
MultithreadEventLoopGroup.next() |
EventLoop |
ThreadPerChannelEventLoopGroup.next()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected abstract boolean |
AbstractChannel.isCompatible(EventLoop loop)
Return
true if the given EventLoop is compatible with this instance. |
void |
Channel.Unsafe.register(EventLoop eventLoop,
ChannelPromise promise)
Register the
Channel of the ChannelPromise and notify
the ChannelFuture once the registration was complete. |
void |
AbstractChannel.AbstractUnsafe.register(EventLoop eventLoop,
ChannelPromise promise) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
EmbeddedChannel.isCompatible(EventLoop loop) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
LocalServerChannel.isCompatible(EventLoop loop) |
protected boolean |
LocalChannel.isCompatible(EventLoop loop) |
Modifier and Type | Class and Description |
---|---|
class |
NioEventLoop
SingleThreadEventLoop implementation which register the Channel 's to a
Selector and so does the multi-plexing of these in the event loop. |
Modifier and Type | Method and Description |
---|---|
protected EventLoop |
NioEventLoopGroup.newChild(Executor executor,
Object... args) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractNioChannel.isCompatible(EventLoop loop) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractOioChannel.isCompatible(EventLoop loop)
Deprecated.
|
Copyright © 2008–2019 The Netty Project. All rights reserved.