update() — spring-boot Function Reference
Architecture documentation for the update() function in TotalProgressListener.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 437a38a4_9ec1_1db9_2a71_8d348b6af025["update()"] b4265e8d_037a_b23b_d852_245a5e391f1a["onUpdate()"] b4265e8d_037a_b23b_d852_245a5e391f1a -->|calls| 437a38a4_9ec1_1db9_2a71_8d348b6af025 5a3c0324_1479_bffc_7e71_9c6c9f676c80["updateProgress()"] 437a38a4_9ec1_1db9_2a71_8d348b6af025 -->|calls| 5a3c0324_1479_bffc_7e71_9c6c9f676c80 style 437a38a4_9ec1_1db9_2a71_8d348b6af025 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/TotalProgressListener.java lines 106–115
void update(ImageProgressUpdateEvent event) {
String status = event.getStatus();
if (status == null) {
return;
}
if (event.getProgressDetail() != null && this.progressByStatus.containsKey(status)) {
int current = this.progressByStatus.get(status);
this.progressByStatus.put(status, updateProgress(current, event.getProgressDetail()));
}
}
Domain
Subdomains
Calls
- updateProgress()
Called By
Source
Frequently Asked Questions
What does update() do?
update() is a function in the spring-boot codebase.
What does update() call?
update() calls 1 function(s): updateProgress.
What calls update()?
update() is called by 1 function(s): onUpdate.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free