Home / Function/ doDeregister() — netty Function Reference

doDeregister() — netty Function Reference

Architecture documentation for the doDeregister() function in LocalServerChannel.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  32c576d5_74e0_59ee_474b_32f6ab79d831["doDeregister()"]
  1a58c560_dde9_7403_e4d4_f9cf37a89c81["LocalServerChannel"]
  32c576d5_74e0_59ee_474b_32f6ab79d831 -->|defined in| 1a58c560_dde9_7403_e4d4_f9cf37a89c81
  9638161a_398c_c05e_0f09_9218f15dfd30["unregistered()"]
  32c576d5_74e0_59ee_474b_32f6ab79d831 -->|calls| 9638161a_398c_c05e_0f09_9218f15dfd30
  style 32c576d5_74e0_59ee_474b_32f6ab79d831 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/local/LocalServerChannel.java lines 142–154

    @Override
    protected void doDeregister() throws Exception {
        EventLoop loop = eventLoop();
        if (loop instanceof IoEventLoop) {
            IoRegistration registration = this.registration;
            if (registration != null) {
                this.registration = null;
                registration.cancel();
            }
        } else {
            ((LocalServerUnsafe) unsafe()).unregistered();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does doDeregister() do?
doDeregister() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/local/LocalServerChannel.java.
Where is doDeregister() defined?
doDeregister() is defined in transport/src/main/java/io/netty/channel/local/LocalServerChannel.java at line 142.
What does doDeregister() call?
doDeregister() calls 1 function(s): unregistered.

Analyze Your Own Codebase

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

Try Supermodel Free