Home / Function/ checkException() — netty Function Reference

checkException() — netty Function Reference

Architecture documentation for the checkException() function in LastInboundHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  63f859a7_10d5_7dd6_6091_ff2387c03b75["checkException()"]
  c6d516e7_31d1_41fe_00af_40df976f9cda["LastInboundHandler"]
  63f859a7_10d5_7dd6_6091_ff2387c03b75 -->|defined in| c6d516e7_31d1_41fe_00af_40df976f9cda
  973333ba_4222_7232_e17d_3b5aa79c6d74["writeOutbound()"]
  973333ba_4222_7232_e17d_3b5aa79c6d74 -->|calls| 63f859a7_10d5_7dd6_6091_ff2387c03b75
  fb3b4ab2_1d54_30d5_e8f4_6573625b7ed7["finishAndReleaseAll()"]
  fb3b4ab2_1d54_30d5_e8f4_6573625b7ed7 -->|calls| 63f859a7_10d5_7dd6_6091_ff2387c03b75
  style 63f859a7_10d5_7dd6_6091_ff2387c03b75 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/LastInboundHandler.java lines 134–141

    public void checkException() throws Exception {
        if (lastException == null) {
            return;
        }
        Throwable t = lastException;
        lastException = null;
        PlatformDependent.throwException(t);
    }

Domain

Subdomains

Frequently Asked Questions

What does checkException() do?
checkException() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/LastInboundHandler.java.
Where is checkException() defined?
checkException() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/LastInboundHandler.java at line 134.
What calls checkException()?
checkException() is called by 2 function(s): finishAndReleaseAll, writeOutbound.

Analyze Your Own Codebase

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

Try Supermodel Free