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 NioIoOpsNioIoOps. ACCEPTInterested in IO events that should be handled by accepting new connectionsstatic NioIoOpsNioIoOps. CONNECTInterested in IO events which should be handled by finish pending connect operationsstatic NioIoOpsNioIoOps. NONEInterested in NO IO events.static NioIoOpsNioIoOps. READInterested in IO events which should be handled by reading data.static NioIoOpsNioIoOps. READ_AND_ACCEPTInterested in IO events which should be either handled by reading or accepting.static NioIoOpsNioIoOps. READ_AND_WRITEInterested in IO events which should be either handled by reading or writing.protected NioIoOpsAbstractNioChannel. readOpsstatic NioIoOpsNioIoOps. WRITEInterested 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 NioIoOpsNioIoEvent. ops()Returns theNioIoOpswhich did trigger theNioIoEvent.static NioIoOpsNioIoOps. valueOf(int value)Returns aNioIoOpsfor the given value.NioIoOpsNioIoOps. with(NioIoOps ops)NioIoOpsNioIoOps. without(NioIoOps ops)Methods in io.netty.channel.nio with parameters of type NioIoOps Modifier and Type Method Description protected voidAbstractNioChannel. addAndSubmit(NioIoOps addOps)booleanNioIoOps. contains(NioIoOps ops)protected voidAbstractNioChannel. removeAndSubmit(NioIoOps removeOps)NioIoOpsNioIoOps. with(NioIoOps ops)NioIoOpsNioIoOps. 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)
-