Uses of Interface
io.netty.channel.IoHandle
-
Packages that use IoHandle 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). -
-
Uses of IoHandle in io.netty.channel
Methods in io.netty.channel with parameters of type IoHandle Modifier and Type Method Description io.netty.util.concurrent.Future<IoRegistration>IoEventLoop. register(IoHandle handle)default io.netty.util.concurrent.Future<IoRegistration>IoEventLoopGroup. register(IoHandle handle)IoRegistrationIoHandler. register(IoHandle handle)Register aIoHandlefor IO.io.netty.util.concurrent.Future<IoRegistration>ManualIoEventLoop. register(IoHandle handle)io.netty.util.concurrent.Future<IoRegistration>SingleThreadIoEventLoop. register(IoHandle handle)Method parameters in io.netty.channel with type arguments of type IoHandle Modifier and Type Method Description booleanIoEventLoop. isCompatible(Class<? extends IoHandle> handleType)default booleanIoEventLoopGroup. isCompatible(Class<? extends IoHandle> handleType)Returnstrueif the given type is compatible with thisIoEventLoopGroupand so can be registered to the containedIoEventLoops,falseotherwise.booleanIoHandler. isCompatible(Class<? extends IoHandle> handleType)Returnstrueif the given type is compatible with thisIoHandlerand so can be registered,falseotherwise.booleanManualIoEventLoop. isCompatible(Class<? extends IoHandle> handleType)booleanSingleThreadIoEventLoop. isCompatible(Class<? extends IoHandle> handleType) -
Uses of IoHandle in io.netty.channel.local
Methods in io.netty.channel.local with parameters of type IoHandle Modifier and Type Method Description IoRegistrationLocalIoHandler. register(IoHandle handle)Method parameters in io.netty.channel.local with type arguments of type IoHandle Modifier and Type Method Description booleanLocalIoHandler. isCompatible(Class<? extends IoHandle> handleType) -
Uses of IoHandle in io.netty.channel.nio
Subinterfaces of IoHandle in io.netty.channel.nio Modifier and Type Interface Description interfaceNioIoHandleIoHandlesubtype for NIO based implementations that will work withNioIoHandler.Classes in io.netty.channel.nio that implement IoHandle Modifier and Type Class Description protected classAbstractNioByteChannel.NioByteUnsafeprotected classAbstractNioChannel.AbstractNioUnsafeclassNioSelectableChannelIoHandle<S extends SelectableChannel>Allows to create anIoHandlefor aSelectableChannel, not necessarily created by Netty.Methods in io.netty.channel.nio with parameters of type IoHandle Modifier and Type Method Description IoRegistrationNioIoHandler. register(IoHandle handle)Method parameters in io.netty.channel.nio with type arguments of type IoHandle Modifier and Type Method Description booleanNioIoHandler. isCompatible(Class<? extends IoHandle> handleType)
-