Home / Function/ doClose() — netty Function Reference

doClose() — netty Function Reference

Architecture documentation for the doClose() function in OioSctpChannel.java from the netty codebase.

Function java Buffer Search calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b["doClose()"]
  0e982d34_5d94_834c_1668_451f9d08d74b["OioSctpChannel"]
  c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b -->|defined in| 0e982d34_5d94_834c_1668_451f9d08d74b
  013d5aeb_9b02_e7ae_c7f1_42eaaf93eb6a["doConnect()"]
  013d5aeb_9b02_e7ae_c7f1_42eaaf93eb6a -->|calls| c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b
  72517e50_22f6_4707_a22e_dcb74a14f77b["doDisconnect()"]
  72517e50_22f6_4707_a22e_dcb74a14f77b -->|calls| c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b
  2fe7b84f_1cd4_2af2_ff5e_6297fbd7b0c1["closeSelector()"]
  c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b -->|calls| 2fe7b84f_1cd4_2af2_ff5e_6297fbd7b0c1
  style c9c9e289_b3f4_8b4b_b451_fd7f47abaf8b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-sctp/src/main/java/io/netty/channel/sctp/oio/OioSctpChannel.java lines 425–431

    @Override
    protected void doClose() throws Exception {
        closeSelector("read", readSelector);
        closeSelector("write", writeSelector);
        closeSelector("connect", connectSelector);
        ch.close();
    }

Domain

Subdomains

Frequently Asked Questions

What does doClose() do?
doClose() is a function in the netty codebase, defined in transport-sctp/src/main/java/io/netty/channel/sctp/oio/OioSctpChannel.java.
Where is doClose() defined?
doClose() is defined in transport-sctp/src/main/java/io/netty/channel/sctp/oio/OioSctpChannel.java at line 425.
What does doClose() call?
doClose() calls 1 function(s): closeSelector.
What calls doClose()?
doClose() is called by 2 function(s): doConnect, doDisconnect.

Analyze Your Own Codebase

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

Try Supermodel Free