Uses of Class
io.netty.channel.nio.NioIoOps
-
Packages that use NioIoOps Package Description io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of NioIoOps in io.netty.channel.nio
Fields in io.netty.channel.nio declared as NioIoOps Modifier and Type Field Description static NioIoOps
NioIoOps. ACCEPT
Interested in IO events that should be handled by accepting new connectionsstatic NioIoOps
NioIoOps. CONNECT
Interested in IO events which should be handled by finish pending connect operationsstatic 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.Methods in io.netty.channel.nio that return NioIoOps Modifier and Type Method Description NioIoOps
NioIoEvent. ops()
Returns theNioIoOps
which did trigger theNioIoEvent
.static NioIoOps
NioIoOps. valueOf(int value)
Returns aNioIoOps
for the given value.NioIoOps
NioIoOps. with(NioIoOps ops)
NioIoOps
NioIoOps. without(NioIoOps ops)
Methods in io.netty.channel.nio with parameters of type NioIoOps Modifier and Type Method 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)
Constructors in io.netty.channel.nio with parameters of type NioIoOps Constructor Description AbstractNioChannel(Channel parent, java.nio.channels.SelectableChannel ch, NioIoOps readOps)
AbstractNioMessageChannel(Channel parent, java.nio.channels.SelectableChannel ch, NioIoOps readOps)
-