Uses of Package
io.netty5.util.concurrent
-
Packages that use io.netty5.util.concurrent Package Description io.netty5.util Utility classes used across multiple packages.io.netty5.util.concurrent Utility classes for concurrent / async tasks.io.netty5.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
Classes in io.netty5.util.concurrent used by io.netty5.util Class Description Future The result of an asynchronous operation.Promise SpecialFuturewhich is writable. -
Classes in io.netty5.util.concurrent used by io.netty5.util.concurrent Class Description AbstractEventExecutor Abstract base class forEventExecutorimplementations.AbstractScheduledEventExecutor Abstract base class forEventExecutors that want to support scheduling.EventExecutor TheEventExecutoris a specialEventExecutorGroupwhich comes with some handy methods to see if aThreadis executed in a event loop.EventExecutorGroup TheEventExecutorGroupis responsible for providing theEventExecutor's to use via itsEventExecutorGroup.next()method.Future The result of an asynchronous operation.FutureCompletionStage ACompletionStagethat provides the same threading semantics and guarantees as the underlyingFuture, which means that all the callbacks will be executed byFutureCompletionStage.executor()if not specified otherwise (by calling the corresponding *Async methods).FutureContextListener Listens to the result of aFuture.FutureListener Listens to the result of aFuture.FuturePromiseFactory GlobalEventExecutor Single-thread singletonEventExecutor.ImmediateEventExecutor ExecutesRunnableobjects in the caller's thread.ImmediateExecutor Executorwhich execute tasks in the callers thread.MultithreadEventExecutorGroup EventExecutorGroupimplementation that handles their tasks with multiple threads at the same time.OrderedEventExecutor Marker interface forEventExecutors that will process all submitted tasks in an ordered / serial fashion.Promise SpecialFuturewhich is writable.RejectedExecutionHandler Similar toRejectedExecutionHandlerbut specific toSingleThreadEventExecutor.RunnableFuture A combination ofRunnableFutureandFuture.RunnableScheduledFuture A combination ofRunnableFutureandComparable(sorting by their next deadline), with additional methods for scheduling, periodicity, and delay.SingleThreadEventExecutor OrderedEventExecutor's implementation that execute all its submitted tasks in a single thread.ThreadProperties Expose details for aThread. -
Classes in io.netty5.util.concurrent used by io.netty5.util.internal Class Description EventExecutor TheEventExecutoris a specialEventExecutorGroupwhich comes with some handy methods to see if aThreadis executed in a event loop.Promise SpecialFuturewhich is writable.