Home / Function/ decodeNonJdkCompatible() — netty Function Reference

decodeNonJdkCompatible() — netty Function Reference

Architecture documentation for the decodeNonJdkCompatible() function in SslHandler.java from the netty codebase.

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  fd6e1cff_0a80_5613_9d64_f2430d162a6b["decodeNonJdkCompatible()"]
  d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1["SslHandler"]
  fd6e1cff_0a80_5613_9d64_f2430d162a6b -->|defined in| d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1
  6aaf84ff_874c_1428_d191_d32a98e4c16e["decode()"]
  6aaf84ff_874c_1428_d191_d32a98e4c16e -->|calls| fd6e1cff_0a80_5613_9d64_f2430d162a6b
  51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7["unwrap()"]
  fd6e1cff_0a80_5613_9d64_f2430d162a6b -->|calls| 51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7
  1807eec1_6f0b_edf4_8d02_a6d15d3c18c1["handleUnwrapThrowable()"]
  fd6e1cff_0a80_5613_9d64_f2430d162a6b -->|calls| 1807eec1_6f0b_edf4_8d02_a6d15d3c18c1
  style fd6e1cff_0a80_5613_9d64_f2430d162a6b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslHandler.java lines 1404–1410

    private void decodeNonJdkCompatible(ChannelHandlerContext ctx, ByteBuf in) {
        try {
            unwrap(ctx, in, in.readableBytes());
        } catch (Throwable cause) {
            handleUnwrapThrowable(ctx, cause);
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does decodeNonJdkCompatible() do?
decodeNonJdkCompatible() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java.
Where is decodeNonJdkCompatible() defined?
decodeNonJdkCompatible() is defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java at line 1404.
What does decodeNonJdkCompatible() call?
decodeNonJdkCompatible() calls 2 function(s): handleUnwrapThrowable, unwrap.
What calls decodeNonJdkCompatible()?
decodeNonJdkCompatible() is called by 1 function(s): decode.

Analyze Your Own Codebase

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

Try Supermodel Free