ExitCodeListener Class — spring-boot Architecture
Architecture documentation for the ExitCodeListener class in SpringApplicationTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/SpringApplicationTests.java lines 1989–2002
static class ExitCodeListener implements ApplicationListener<ExitCodeEvent> {
private @Nullable Integer exitCode;
@Override
public void onApplicationEvent(ExitCodeEvent event) {
this.exitCode = event.getExitCode();
}
@Nullable Integer getExitCode() {
return this.exitCode;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free