Home / Class/ TestTotalProgressListener Class — spring-boot Architecture

TestTotalProgressListener Class — spring-boot Architecture

Architecture documentation for the TestTotalProgressListener class in TotalProgressListenerTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/TotalProgressListenerTests.java lines 68–85

	private static class TestTotalProgressListener extends TotalProgressListener<TestImageUpdateEvent> {

		TestTotalProgressListener(Consumer<TotalProgressEvent> consumer) {
			super(consumer, new String[] { "Pulling", "Downloading", "Extracting" });
		}

		@Override
		public void onUpdate(TestImageUpdateEvent event) {
			super.onUpdate(event);
			try {
				Thread.sleep(10);
			}
			catch (InterruptedException ex) {
				// Ignore
			}
		}

	}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free