onUpdate() — spring-boot Function Reference
Architecture documentation for the onUpdate() function in DockerApi.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc["onUpdate()"] d89ba446_65a7_a78f_3c22_faffc2509bbc["onUpdate()"] d89ba446_65a7_a78f_3c22_faffc2509bbc -->|calls| a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc 4b537b19_85cc_6f5f_a1b0_9be4f0021d2b["onUpdate()"] 4b537b19_85cc_6f5f_a1b0_9be4f0021d2b -->|calls| a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc 686f702f_99b2_00cb_e536_fc675d8e38f4["pull()"] 686f702f_99b2_00cb_e536_fc675d8e38f4 -->|calls| a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc 11fb1f04_d427_de18_b7e0_4b152f1bd995["push()"] 11fb1f04_d427_de18_b7e0_4b152f1bd995 -->|calls| a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc 1490249f_76a9_8c84_3261_04b13e934ae0["load()"] 1490249f_76a9_8c84_3261_04b13e934ae0 -->|calls| a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc d89ba446_65a7_a78f_3c22_faffc2509bbc["onUpdate()"] a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc -->|calls| d89ba446_65a7_a78f_3c22_faffc2509bbc d59d57fe_e90e_fdc9_79e6_7e82665fba5c["equals()"] a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc -->|calls| d59d57fe_e90e_fdc9_79e6_7e82665fba5c style a1ee3ef2_1dd0_7394_2e65_dc54bedc20dc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/DockerApi.java lines 577–585
@Override
public void onUpdate(ProgressUpdateEvent event) {
String status = event.getStatus();
if (status != null && status.startsWith(PREFIX)) {
String digest = status.substring(PREFIX.length()).trim();
Assert.state(this.digest == null || this.digest.equals(digest), "Different digests IDs provided");
this.digest = digest;
}
}
Domain
Subdomains
Calls
Called By
- load()
- onUpdate()
- onUpdate()
- pull()
- push()
Source
Frequently Asked Questions
What does onUpdate() do?
onUpdate() is a function in the spring-boot codebase.
What does onUpdate() call?
onUpdate() calls 2 function(s): equals, onUpdate.
What calls onUpdate()?
onUpdate() is called by 5 function(s): load, onUpdate, onUpdate, pull, push.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free