closeForcibly() — netty Function Reference
Architecture documentation for the closeForcibly() function in AbstractChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 17397289_ac28_713d_e04b_8903499df5fd["closeForcibly()"] 330d05c9_85ca_2e57_92f5_e996fb442b81["AbstractUnsafe"] 17397289_ac28_713d_e04b_8903499df5fd -->|defined in| 330d05c9_85ca_2e57_92f5_e996fb442b81 7ac63885_60f4_64a0_2bb5_20c6a0c6de73["register()"] 7ac63885_60f4_64a0_2bb5_20c6a0c6de73 -->|calls| 17397289_ac28_713d_e04b_8903499df5fd 30686258_744e_d516_027d_4264d61dbea3["assertEventLoop()"] 17397289_ac28_713d_e04b_8903499df5fd -->|calls| 30686258_744e_d516_027d_4264d61dbea3 b2ef1021_f03a_0738_b62a_63d84d51e6b6["doClose()"] 17397289_ac28_713d_e04b_8903499df5fd -->|calls| b2ef1021_f03a_0738_b62a_63d84d51e6b6 style 17397289_ac28_713d_e04b_8903499df5fd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/AbstractChannel.java lines 630–639
@Override
public final void closeForcibly() {
assertEventLoop();
try {
doClose();
} catch (Exception e) {
logger.warn("Failed to close a channel.", e);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does closeForcibly() do?
closeForcibly() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/AbstractChannel.java.
Where is closeForcibly() defined?
closeForcibly() is defined in transport/src/main/java/io/netty/channel/AbstractChannel.java at line 630.
What does closeForcibly() call?
closeForcibly() calls 2 function(s): assertEventLoop, doClose.
What calls closeForcibly()?
closeForcibly() is called by 1 function(s): register.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free