Home / Function/ checkExceptions() — netty Function Reference

checkExceptions() — netty Function Reference

Architecture documentation for the checkExceptions() function in ProxyServer.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  686ac6e4_a088_5397_64bc_88c0f1256778["checkExceptions()"]
  8191386f_3cbb_1cbe_52f4_e98d4cb46d64["ProxyServer"]
  686ac6e4_a088_5397_64bc_88c0f1256778 -->|defined in| 8191386f_3cbb_1cbe_52f4_e98d4cb46d64
  style 686ac6e4_a088_5397_64bc_88c0f1256778 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler-proxy/src/test/java/io/netty/handler/proxy/ProxyServer.java lines 133–147

    public final void checkExceptions() {
        Throwable t;
        for (;;) {
            t = recordedExceptions.poll();
            if (t == null) {
                break;
            }

            logger.warn("Unexpected exception:", t);
        }

        if (t != null) {
            PlatformDependent.throwException(t);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does checkExceptions() do?
checkExceptions() is a function in the netty codebase, defined in handler-proxy/src/test/java/io/netty/handler/proxy/ProxyServer.java.
Where is checkExceptions() defined?
checkExceptions() is defined in handler-proxy/src/test/java/io/netty/handler/proxy/ProxyServer.java at line 133.

Analyze Your Own Codebase

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

Try Supermodel Free