close() — spring-boot Function Reference
Architecture documentation for the close() function in FileDescriptor.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 153c6460_b9cb_47c7_4113_ec1a8aba1552["close()"] 2ad4f387_b6c3_3f9b_8b9a_f1583723adb8["close()"] 2ad4f387_b6c3_3f9b_8b9a_f1583723adb8 -->|calls| 153c6460_b9cb_47c7_4113_ec1a8aba1552 2ad4f387_b6c3_3f9b_8b9a_f1583723adb8["close()"] 153c6460_b9cb_47c7_4113_ec1a8aba1552 -->|calls| 2ad4f387_b6c3_3f9b_8b9a_f1583723adb8 style 153c6460_b9cb_47c7_4113_ec1a8aba1552 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/socket/FileDescriptor.java lines 68–78
synchronized void close() {
if (this.status == Status.OPEN) {
if (this.referenceCount == 0) {
this.closer.accept(this.openHandle.value);
this.status = Status.CLOSED;
}
else {
this.status = Status.CLOSE_PENDING;
}
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does close() do?
close() is a function in the spring-boot codebase.
What does close() call?
close() calls 1 function(s): close.
What calls close()?
close() is called by 1 function(s): close.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free