implement ProgressMonitor.java

This commit is contained in:
2026-06-08 00:37:50 +03:30
parent 015734784f
commit 09ac99ee80
+5
View File
@@ -58,6 +58,11 @@ public class ProgressMonitor implements Runnable {
// TODO:
// If all chunks are completed, print a final message and exit the loop
if (completedChunks == chunks.size()) {
System.out.println("progress monitor is ended...");
break;
}
try {
Thread.sleep(monitorDelayMs);
} catch (InterruptedException e) {