| Package | Description |
|---|---|
| io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
| Modifier and Type | Field and Description |
|---|---|
static NioIoOps |
NioIoOps.ACCEPT
Interested in IO events that should be handled by accepting new connections
|
static NioIoOps |
NioIoOps.CONNECT
Interested in IO events which should be handled by finish pending connect operations
|
static NioIoOps |
NioIoOps.NONE
Interested in NO IO events.
|
static NioIoOps |
NioIoOps.READ
Interested in IO events which should be handled by reading data.
|
static NioIoOps |
NioIoOps.READ_AND_ACCEPT
Interested in IO events which should be either handled by reading or accepting.
|
static NioIoOps |
NioIoOps.READ_AND_WRITE
Interested in IO events which should be either handled by reading or writing.
|
protected NioIoOps |
AbstractNioChannel.readOps |
static NioIoOps |
NioIoOps.WRITE
Interested in IO events which tell that the underlying channel is writable again.
|
| Modifier and Type | Method and Description |
|---|---|
NioIoOps |
NioIoEvent.ops()
Returns the
NioIoOps which did trigger the NioIoEvent. |
static NioIoOps |
NioIoOps.valueOf(int value)
Returns a
NioIoOps for the given value. |
NioIoOps |
NioIoOps.with(NioIoOps ops)
|
NioIoOps |
NioIoOps.without(NioIoOps ops)
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
AbstractNioChannel.addAndSubmit(NioIoOps addOps) |
boolean |
NioIoOps.contains(NioIoOps ops)
|
protected void |
AbstractNioChannel.removeAndSubmit(NioIoOps removeOps) |
NioIoOps |
NioIoOps.with(NioIoOps ops)
|
NioIoOps |
NioIoOps.without(NioIoOps ops)
|
| Constructor and Description |
|---|
AbstractNioChannel(Channel parent,
SelectableChannel ch,
NioIoOps readOps) |
AbstractNioMessageChannel(Channel parent,
SelectableChannel ch,
NioIoOps readOps) |
Copyright © 2008–2025 The Netty Project. All rights reserved.