| 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.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
| Modifier and Type | Method and Description |
|---|---|
IoRegistration |
IoHandler.register(IoEventLoop eventLoop,
IoHandle handle)
Register a
IoHandle for IO. |
| Modifier and Type | Method and Description |
|---|---|
io.netty.util.concurrent.Future<IoRegistration> |
IoEventLoop.register(IoHandle handle)
|
io.netty.util.concurrent.Future<IoRegistration> |
SingleThreadIoEventLoop.register(IoHandle handle) |
| Modifier and Type | Method and Description |
|---|---|
void |
IoHandle.handle(IoRegistration registration,
IoEvent ioEvent)
Be called once there is something to handle.
|
| Modifier and Type | Method and Description |
|---|---|
IoRegistration |
LocalIoHandler.register(IoEventLoop eventLoop,
IoHandle handle) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
NioIoRegistration
IoRegistration implementation that is used by NioIoHandler. |
| Modifier and Type | Method and Description |
|---|---|
void |
NioSelectableChannelIoHandle.handle(IoRegistration registration,
IoEvent ioEvent) |
void |
AbstractNioChannel.AbstractNioUnsafe.handle(IoRegistration registration,
IoEvent event) |
Copyright © 2008–2025 The Netty Project. All rights reserved.