Home / Function/ doClose() — netty Function Reference

doClose() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  40b7903b_c92b_d334_94de_3c73e9435804["doClose()"]
  6afb1ded_b47f_ea85_aaad_a3a81300c88f["OioSctpServerChannel"]
  40b7903b_c92b_d334_94de_3c73e9435804 -->|defined in| 6afb1ded_b47f_ea85_aaad_a3a81300c88f
  style 40b7903b_c92b_d334_94de_3c73e9435804 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-sctp/src/main/java/io/netty/channel/sctp/oio/OioSctpServerChannel.java lines 171–179

    @Override
    protected void doClose() throws Exception {
        try {
            selector.close();
        } catch (IOException e) {
            logger.warn("Failed to close a selector.", e);
        }
        sch.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/OioSctpServerChannel.java.
Where is doClose() defined?
doClose() is defined in transport-sctp/src/main/java/io/netty/channel/sctp/oio/OioSctpServerChannel.java at line 171.

Analyze Your Own Codebase

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

Try Supermodel Free