TestSpringApplicationShutdownHook Class — spring-boot Architecture
Architecture documentation for the TestSpringApplicationShutdownHook class in SpringApplicationShutdownHookTests.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/test/java/org/springframework/boot/SpringApplicationShutdownHookTests.java lines 229–242
static class TestSpringApplicationShutdownHook extends SpringApplicationShutdownHook {
private boolean runtimeShutdownHookAdded;
@Override
protected void addRuntimeShutdownHook() {
this.runtimeShutdownHookAdded = true;
}
boolean isRuntimeShutdownHookAdded() {
return this.runtimeShutdownHookAdded;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free