Class UnorderedThreadPoolEventExecutor

All Implemented Interfaces:
EventExecutor, EventExecutorGroup, AutoCloseable, Iterable<EventExecutor>, Executor, ExecutorService, ScheduledExecutorService

public final class UnorderedThreadPoolEventExecutor extends ScheduledThreadPoolExecutor implements EventExecutor
EventExecutor implementation which makes no guarantees about the ordering of task execution that are submitted because there may be multiple threads executing these tasks. This implementation is most useful for protocols that do not need strict ordering. Because it provides no ordering care should be taken when using it!