Home / Function/ isShuttingDown() — netty Function Reference

isShuttingDown() — netty Function Reference

Architecture documentation for the isShuttingDown() function in ThreadPerChannelEventLoopGroup.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fbf85bea_72fd_83f0_ca2a_ce7ea7ec7872["isShuttingDown()"]
  087189b8_1bd9_3f4f_71bf_da2f9e819990["ThreadPerChannelEventLoopGroup"]
  fbf85bea_72fd_83f0_ca2a_ce7ea7ec7872 -->|defined in| 087189b8_1bd9_3f4f_71bf_da2f9e819990
  style fbf85bea_72fd_83f0_ca2a_ce7ea7ec7872 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/ThreadPerChannelEventLoopGroup.java lines 197–210

    @Override
    public boolean isShuttingDown() {
        for (EventLoop l: activeChildren) {
            if (!l.isShuttingDown()) {
                return false;
            }
        }
        for (EventLoop l: idleChildren) {
            if (!l.isShuttingDown()) {
                return false;
            }
        }
        return true;
    }

Domain

Subdomains

Frequently Asked Questions

What does isShuttingDown() do?
isShuttingDown() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/ThreadPerChannelEventLoopGroup.java.
Where is isShuttingDown() defined?
isShuttingDown() is defined in transport/src/main/java/io/netty/channel/ThreadPerChannelEventLoopGroup.java at line 197.

Analyze Your Own Codebase

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

Try Supermodel Free