readAll() — spring-boot Function Reference
Architecture documentation for the readAll() function in LogUpdateEventTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 7928eae8_8931_b8f5_1c9b_9ff9c497e246["readAll()"] f43121a8_36a9_21ea_db37_7e668da983d5["readAllWhenSimpleStreamReturnsEvents()"] f43121a8_36a9_21ea_db37_7e668da983d5 -->|calls| 7928eae8_8931_b8f5_1c9b_9ff9c497e246 0fab8639_03ac_2094_00da_098ec4bc568f["readAllWhenAnsiStreamReturnsEvents()"] 0fab8639_03ac_2094_00da_098ec4bc568f -->|calls| 7928eae8_8931_b8f5_1c9b_9ff9c497e246 24900cf5_1e08_b4f7_940a_9ff71281471a["readSucceedsWhenStreamTypeIsInvalid()"] 24900cf5_1e08_b4f7_940a_9ff71281471a -->|calls| 7928eae8_8931_b8f5_1c9b_9ff9c497e246 style 7928eae8_8931_b8f5_1c9b_9ff9c497e246 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/LogUpdateEventTests.java lines 63–69
private List<LogUpdateEvent> readAll(String name) throws IOException {
List<LogUpdateEvent> events = new ArrayList<>();
try (InputStream inputStream = getClass().getResourceAsStream(name)) {
LogUpdateEvent.readAll(inputStream, events::add);
}
return events;
}
Domain
Subdomains
Called By
- readAllWhenAnsiStreamReturnsEvents()
- readAllWhenSimpleStreamReturnsEvents()
- readSucceedsWhenStreamTypeIsInvalid()
Source
Frequently Asked Questions
What does readAll() do?
readAll() is a function in the spring-boot codebase.
What calls readAll()?
readAll() is called by 3 function(s): readAllWhenAnsiStreamReturnsEvents, readAllWhenSimpleStreamReturnsEvents, readSucceedsWhenStreamTypeIsInvalid.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free