Uses of Class
io.netty.util.concurrent.AbstractScheduledEventExecutor
-
Packages that use AbstractScheduledEventExecutor 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.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of AbstractScheduledEventExecutor in io.netty.channel
Subclasses of AbstractScheduledEventExecutor in io.netty.channel Modifier and Type Class Description classDefaultEventLoopclassSingleThreadEventLoopAbstract base class forEventLoops that execute all its submitted tasks in a single thread.classThreadPerChannelEventLoopDeprecated.this will be remove in the next-major release. -
Uses of AbstractScheduledEventExecutor in io.netty.channel.embedded
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.embedded Modifier and Type Class Description (package private) classEmbeddedEventLoop -
Uses of AbstractScheduledEventExecutor in io.netty.channel.nio
Subclasses of AbstractScheduledEventExecutor in io.netty.channel.nio Modifier and Type Class Description classNioEventLoopSingleThreadEventLoopimplementation which register theChannel's to aSelectorand so does the multi-plexing of these in the event loop. -
Uses of AbstractScheduledEventExecutor in io.netty.util.concurrent
Subclasses of AbstractScheduledEventExecutor in io.netty.util.concurrent Modifier and Type Class Description classDefaultEventExecutorDefaultSingleThreadEventExecutorimplementation which just execute all submitted task in a serial fashion.classGlobalEventExecutorSingle-thread singletonEventExecutor.classSingleThreadEventExecutorAbstract base class forOrderedEventExecutor's that execute all its submitted tasks in a single thread.Methods in io.netty.util.concurrent that return AbstractScheduledEventExecutor Modifier and Type Method Description private AbstractScheduledEventExecutorScheduledFutureTask. scheduledExecutor()Constructors in io.netty.util.concurrent with parameters of type AbstractScheduledEventExecutor Constructor Description ScheduledFutureTask(AbstractScheduledEventExecutor executor, java.lang.Runnable runnable, long nanoTime)ScheduledFutureTask(AbstractScheduledEventExecutor executor, java.lang.Runnable runnable, long nanoTime, long period)ScheduledFutureTask(AbstractScheduledEventExecutor executor, java.util.concurrent.Callable<V> callable, long nanoTime)ScheduledFutureTask(AbstractScheduledEventExecutor executor, java.util.concurrent.Callable<V> callable, long nanoTime, long period)
-