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).
|
io.netty.channel.rxtx |
A serial and parallel port communication transport based on RXTX.
|
Modifier and Type | Method and Description |
---|---|
protected abstract AbstractChannel.AbstractUnsafe |
AbstractChannel.newUnsafe()
Create a new
AbstractChannel.AbstractUnsafe instance which will be used for the life-time of the Channel |
protected AbstractChannel.AbstractUnsafe |
AbstractServerChannel.newUnsafe() |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
EmbeddedChannel.newUnsafe() |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
LocalChannel.newUnsafe() |
Modifier and Type | Class and Description |
---|---|
protected class |
AbstractNioByteChannel.NioByteUnsafe |
protected class |
AbstractNioChannel.AbstractNioUnsafe |
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
AbstractOioChannel.newUnsafe()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected AbstractChannel.AbstractUnsafe |
RxtxChannel.newUnsafe()
Deprecated.
|
Copyright © 2008–2024 The Netty Project. All rights reserved.