Home / Function/ readTimedOut() — netty Function Reference

readTimedOut() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java lines 96–102

    protected void readTimedOut(ChannelHandlerContext ctx) throws Exception {
        if (!closed) {
            ctx.fireExceptionCaught(ReadTimeoutException.INSTANCE);
            ctx.close();
            closed = true;
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free