Home / Class/ PowerOfTwoEventExecutorChooser Class — netty Architecture

PowerOfTwoEventExecutorChooser Class — netty Architecture

Architecture documentation for the PowerOfTwoEventExecutorChooser class in DefaultEventExecutorChooserFactory.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a4f62075_cd30_6fb1_0511_d10f858fa923["PowerOfTwoEventExecutorChooser"]
  e9573f02_fa38_a523_6328_d0056df7c09f["DefaultEventExecutorChooserFactory.java"]
  a4f62075_cd30_6fb1_0511_d10f858fa923 -->|defined in| e9573f02_fa38_a523_6328_d0056df7c09f
  08183e9f_a6df_0163_d2d0_34dff1812109["PowerOfTwoEventExecutorChooser()"]
  a4f62075_cd30_6fb1_0511_d10f858fa923 -->|method| 08183e9f_a6df_0163_d2d0_34dff1812109
  5f3b8bcd_0305_9d72_c53b_5f1fe51212ae["EventExecutor()"]
  a4f62075_cd30_6fb1_0511_d10f858fa923 -->|method| 5f3b8bcd_0305_9d72_c53b_5f1fe51212ae

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/DefaultEventExecutorChooserFactory.java lines 43–55

    private static final class PowerOfTwoEventExecutorChooser implements EventExecutorChooser {
        private final AtomicInteger idx = new AtomicInteger();
        private final EventExecutor[] executors;

        PowerOfTwoEventExecutorChooser(EventExecutor[] executors) {
            this.executors = executors;
        }

        @Override
        public EventExecutor next() {
            return executors[idx.getAndIncrement() & executors.length - 1];
        }
    }

Frequently Asked Questions

What is the PowerOfTwoEventExecutorChooser class?
PowerOfTwoEventExecutorChooser is a class in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/DefaultEventExecutorChooserFactory.java.
Where is PowerOfTwoEventExecutorChooser defined?
PowerOfTwoEventExecutorChooser is defined in common/src/main/java/io/netty/util/concurrent/DefaultEventExecutorChooserFactory.java at line 43.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free