Home / Type/ IoEventLoop Type — netty Architecture

IoEventLoop Type — netty Architecture

Architecture documentation for the IoEventLoop type/interface in IoEventLoop.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fe57888d_485c_0b30_36d3_2385dcc20bb7["IoEventLoop"]
  63721448_7295_6c21_36ab_29e1acb0e9a4["IoEventLoop.java"]
  fe57888d_485c_0b30_36d3_2385dcc20bb7 -->|defined in| 63721448_7295_6c21_36ab_29e1acb0e9a4
  style fe57888d_485c_0b30_36d3_2385dcc20bb7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/IoEventLoop.java lines 24–46

public interface IoEventLoop extends EventLoop, IoEventLoopGroup {

    @Override
    default IoEventLoop next() {
        return this;
    }

    /**
     * Register the {@link IoHandle} to the {@link EventLoop} for I/O processing.
     *
     * @param handle        the {@link IoHandle} to register.
     * @return              the {@link Future} that is notified once the operations completes.
     */
    Future<IoRegistration> register(IoHandle handle);

    // Force sub-classes to implement.
    @Override
    boolean isCompatible(Class<? extends IoHandle> handleType);

    // Force sub-classes to implement.
    @Override
    boolean isIoType(Class<? extends IoHandler> handlerType);
}

Frequently Asked Questions

What is the IoEventLoop type?
IoEventLoop is a type/interface in the netty codebase, defined in transport/src/main/java/io/netty/channel/IoEventLoop.java.
Where is IoEventLoop defined?
IoEventLoop is defined in transport/src/main/java/io/netty/channel/IoEventLoop.java at line 24.

Analyze Your Own Codebase

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

Try Supermodel Free