DockerComposeServicesReadyEvent Class — spring-boot Architecture
Architecture documentation for the DockerComposeServicesReadyEvent class in DockerComposeServicesReadyEvent.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeServicesReadyEvent.java lines 36–58
public class DockerComposeServicesReadyEvent extends ApplicationEvent {
private final List<RunningService> runningServices;
DockerComposeServicesReadyEvent(ApplicationContext source, List<RunningService> runningServices) {
super(source);
this.runningServices = runningServices;
}
@Override
public ApplicationContext getSource() {
return (ApplicationContext) super.getSource();
}
/**
* Return the relevant Docker Compose services that are running.
* @return the running services
*/
public List<RunningService> getRunningServices() {
return this.runningServices;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free