Home / Function/ closeOutbound0() — netty Function Reference

closeOutbound0() — netty Function Reference

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

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  c4de677d_582c_2bc5_6156_a9530cc12b43["closeOutbound0()"]
  d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1["SslHandler"]
  c4de677d_582c_2bc5_6156_a9530cc12b43 -->|defined in| d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1
  c5224ece_f1a4_5cb6_4610_f10831b396c3["ChannelFuture()"]
  c5224ece_f1a4_5cb6_4610_f10831b396c3 -->|calls| c4de677d_582c_2bc5_6156_a9530cc12b43
  586d9480_c5dd_d8c2_fcc9_bd16fdeca640["setState()"]
  c4de677d_582c_2bc5_6156_a9530cc12b43 -->|calls| 586d9480_c5dd_d8c2_fcc9_bd16fdeca640
  c5a95111_bf75_eef9_82e9_d3b52fb23759["flush()"]
  c4de677d_582c_2bc5_6156_a9530cc12b43 -->|calls| c5a95111_bf75_eef9_82e9_d3b52fb23759
  style c4de677d_582c_2bc5_6156_a9530cc12b43 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslHandler.java lines 694–704

    private void closeOutbound0(ChannelPromise promise) {
        setState(STATE_OUTBOUND_CLOSED);
        engine.closeOutbound();
        try {
            flush(ctx, promise);
        } catch (Exception e) {
            if (!promise.tryFailure(e)) {
                logger.warn("{} flush() raised a masked exception.", ctx.channel(), e);
            }
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does closeOutbound0() do?
closeOutbound0() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java.
Where is closeOutbound0() defined?
closeOutbound0() is defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java at line 694.
What does closeOutbound0() call?
closeOutbound0() calls 2 function(s): flush, setState.
What calls closeOutbound0()?
closeOutbound0() is called by 1 function(s): ChannelFuture.

Analyze Your Own Codebase

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

Try Supermodel Free