LogUpdateEvent() — spring-boot Function Reference
Architecture documentation for the LogUpdateEvent() function in LogUpdateEvent.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c6fb1aae_4d88_7cbe_ca22_ec85b8010be2["LogUpdateEvent()"] e0d8bdd3_bcb8_0ae9_0abc_5d0d23d31eab["readAll()"] e0d8bdd3_bcb8_0ae9_0abc_5d0d23d31eab -->|calls| c6fb1aae_4d88_7cbe_ca22_ec85b8010be2 e747cbab_4279_bc75_c0de_0be2893114bb["read()"] e747cbab_4279_bc75_c0de_0be2893114bb -->|calls| c6fb1aae_4d88_7cbe_ca22_ec85b8010be2 style c6fb1aae_4d88_7cbe_ca22_ec85b8010be2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/LogUpdateEvent.java lines 48–55
LogUpdateEvent(StreamType streamType, byte[] payload) {
this.streamType = streamType;
this.payload = payload;
String string = new String(payload, StandardCharsets.UTF_8);
string = ANSI_PATTERN.matcher(string).replaceAll("");
string = TRAILING_NEW_LINE_PATTERN.matcher(string).replaceAll("");
this.string = string;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does LogUpdateEvent() do?
LogUpdateEvent() is a function in the spring-boot codebase.
What calls LogUpdateEvent()?
LogUpdateEvent() is called by 2 function(s): read, readAll.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free