Home / Function/ channelIdle() — netty Function Reference

channelIdle() — netty Function Reference

Architecture documentation for the channelIdle() function in ReadTimeoutHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  73b95e6b_235c_20d1_c7c1_d9190ae4cdf8["channelIdle()"]
  7d2aa010_691b_2ab7_37d5_84328b263084["ReadTimeoutHandler"]
  73b95e6b_235c_20d1_c7c1_d9190ae4cdf8 -->|defined in| 7d2aa010_691b_2ab7_37d5_84328b263084
  caf1bab8_d11b_4ff4_5204_51446fd8cca0["readTimedOut()"]
  73b95e6b_235c_20d1_c7c1_d9190ae4cdf8 -->|calls| caf1bab8_d11b_4ff4_5204_51446fd8cca0
  style 73b95e6b_235c_20d1_c7c1_d9190ae4cdf8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java lines 87–91

    @Override
    protected final void channelIdle(ChannelHandlerContext ctx, IdleStateEvent evt) throws Exception {
        assert evt.state() == IdleState.READER_IDLE;
        readTimedOut(ctx);
    }

Domain

Subdomains

Frequently Asked Questions

What does channelIdle() do?
channelIdle() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java.
Where is channelIdle() defined?
channelIdle() is defined in handler/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java at line 87.
What does channelIdle() call?
channelIdle() calls 1 function(s): readTimedOut.

Analyze Your Own Codebase

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

Try Supermodel Free