close() — netty Function Reference
Architecture documentation for the close() function in KQueueIoHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1e77e40a_f188_9c62_9373_036f4078e2fa["close()"] 7590dada_52a8_cd3f_013c_39eaea0e149a["DefaultKqueueIoRegistration"] 1e77e40a_f188_9c62_9373_036f4078e2fa -->|defined in| 7590dada_52a8_cd3f_013c_39eaea0e149a 36b68eb9_52c7_e010_b6ac_066e18cb31c4["prepareToDestroy()"] 36b68eb9_52c7_e010_b6ac_066e18cb31c4 -->|calls| 1e77e40a_f188_9c62_9373_036f4078e2fa fa5633f7_0b94_3bc2_21b7_c76c0a51fa9c["destroy()"] fa5633f7_0b94_3bc2_21b7_c76c0a51fa9c -->|calls| 1e77e40a_f188_9c62_9373_036f4078e2fa 984fe5fa_153e_2c00_126c_0f45ae1adb91["cancel()"] 1e77e40a_f188_9c62_9373_036f4078e2fa -->|calls| 984fe5fa_153e_2c00_126c_0f45ae1adb91 style 1e77e40a_f188_9c62_9373_036f4078e2fa fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueIoHandler.java lines 509–516
void close() {
cancel();
try {
handle.close();
} catch (Exception e) {
logger.debug("Exception during closing " + handle, e);
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does close() do?
close() is a function in the netty codebase, defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueIoHandler.java.
Where is close() defined?
close() is defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueIoHandler.java at line 509.
What does close() call?
close() calls 1 function(s): cancel.
What calls close()?
close() is called by 2 function(s): destroy, prepareToDestroy.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free