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.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractChannel.AbstractUnsafe
Unsafe implementation which sub-classes must extend and use. |
Modifier and Type | Method and Description |
---|---|
Channel.Unsafe |
Channel.unsafe()
Returns an internal-use-only object that provides unsafe operations.
|
Channel.Unsafe |
AbstractChannel.unsafe() |
Modifier and Type | Method and Description |
---|---|
Channel.Unsafe |
EmbeddedChannel.unsafe() |
Modifier and Type | Interface and Description |
---|---|
static interface |
AbstractNioChannel.NioUnsafe
Special
Unsafe sub-type which allows to access the underlying SelectableChannel |
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractNioByteChannel.NioByteUnsafe |
protected class |
AbstractNioChannel.AbstractNioUnsafe |
Copyright © 2008–2024 The Netty Project. All rights reserved.