Uses of Interface
io.netty.channel.EventLoop
-
Packages that use EventLoop 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.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.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).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000). -
-
Uses of EventLoop in io.netty.channel
Subinterfaces of EventLoop in io.netty.channel Modifier and Type Interface Description interfaceIoEventLoopClasses in io.netty.channel that implement EventLoop Modifier and Type Class Description classAbstractEventLoopSkeletal implementation ofEventLoop.classDefaultEventLoopclassManualIoEventLoopIoEventLoopimplementation that is owned by the user and so needs to be driven by the user manually with the givenThread.classSingleThreadEventLoopAbstract base class forEventLoops that execute all its submitted tasks in a single thread.classSingleThreadIoEventLoopIoEventLoopimplementation that execute all its submitted tasks in a single thread using the providedIoHandler.classThreadPerChannelEventLoopDeprecated.this will be remove in the next-major release.Methods in io.netty.channel that return EventLoop Modifier and Type Method Description EventLoopAbstractChannel. eventLoop()EventLoopChannel. eventLoop()protected EventLoopDefaultEventLoopGroup. newChild(Executor executor, Object... args)Deprecated.protected abstract EventLoopMultithreadEventLoopGroup. newChild(Executor executor, Object... args)protected EventLoopMultiThreadIoEventLoopGroup. newChild(Executor executor, Object... args)protected EventLoopThreadPerChannelEventLoopGroup. newChild(Object... args)Deprecated.Creates a newEventLoop.EventLoopAbstractEventLoop. next()abstract EventLoopAbstractEventLoopGroup. next()EventLoopEventLoopGroup. next()Return the nextEventLoopto useEventLoopMultithreadEventLoopGroup. next()EventLoopSingleThreadEventLoop. next()EventLoopThreadPerChannelEventLoopGroup. next()Deprecated.Methods in io.netty.channel with parameters of type EventLoop Modifier and Type Method Description protected abstract booleanAbstractChannel. isCompatible(EventLoop loop)Returntrueif the givenEventLoopis compatible with this instance.voidAbstractChannel.AbstractUnsafe. register(EventLoop eventLoop, ChannelPromise promise)voidChannel.Unsafe. register(EventLoop eventLoop, ChannelPromise promise)Register theChannelof theChannelPromiseand notify theChannelFutureonce the registration was complete. -
Uses of EventLoop in io.netty.channel.embedded
Methods in io.netty.channel.embedded with parameters of type EventLoop Modifier and Type Method Description protected booleanEmbeddedChannel. isCompatible(EventLoop loop) -
Uses of EventLoop in io.netty.channel.local
Methods in io.netty.channel.local with parameters of type EventLoop Modifier and Type Method Description protected booleanLocalChannel. isCompatible(EventLoop loop)protected booleanLocalServerChannel. isCompatible(EventLoop loop) -
Uses of EventLoop in io.netty.channel.nio
Classes in io.netty.channel.nio that implement EventLoop Modifier and Type Class Description classNioEventLoopDeprecated.UseSingleThreadIoEventLoopwithNioIoHandlerMethods in io.netty.channel.nio with parameters of type EventLoop Modifier and Type Method Description protected booleanAbstractNioChannel. isCompatible(EventLoop loop) -
Uses of EventLoop in io.netty.channel.oio
Methods in io.netty.channel.oio with parameters of type EventLoop Modifier and Type Method Description protected booleanAbstractOioChannel. isCompatible(EventLoop loop)Deprecated.
-