shutdownGracefully() — netty Function Reference
Architecture documentation for the shutdownGracefully() function in MultithreadEventExecutorGroup.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a63eafdf_4a18_9562_b42d_15780994cd06["shutdownGracefully()"] dd791801_e8f4_25f4_af13_edadaaa8ab64["MultithreadEventExecutorGroup"] a63eafdf_4a18_9562_b42d_15780994cd06 -->|defined in| dd791801_e8f4_25f4_af13_edadaaa8ab64 041c61bd_938e_a878_9b59_628b5e1eac33["MultithreadEventExecutorGroup()"] 041c61bd_938e_a878_9b59_628b5e1eac33 -->|calls| a63eafdf_4a18_9562_b42d_15780994cd06 f037cc11_2796_c5ed_0e22_d368ced309e0["terminationFuture()"] a63eafdf_4a18_9562_b42d_15780994cd06 -->|calls| f037cc11_2796_c5ed_0e22_d368ced309e0 style a63eafdf_4a18_9562_b42d_15780994cd06 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/concurrent/MultithreadEventExecutorGroup.java lines 188–194
@Override
public Future<?> shutdownGracefully(long quietPeriod, long timeout, TimeUnit unit) {
for (EventExecutor l: children) {
l.shutdownGracefully(quietPeriod, timeout, unit);
}
return terminationFuture();
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does shutdownGracefully() do?
shutdownGracefully() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/MultithreadEventExecutorGroup.java.
Where is shutdownGracefully() defined?
shutdownGracefully() is defined in common/src/main/java/io/netty/util/concurrent/MultithreadEventExecutorGroup.java at line 188.
What does shutdownGracefully() call?
shutdownGracefully() calls 1 function(s): terminationFuture.
What calls shutdownGracefully()?
shutdownGracefully() is called by 1 function(s): MultithreadEventExecutorGroup.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free