7172737475767778798081
/* * Wait for the finalization of the Executor */ try { myExecutor.awaitTermination(1, TimeUnit.DAYS); } catch (InterruptedException e) { e.printStackTrace(); } /*
6970717273747576777879
executor.shutdown(); /* * Wait for the finalization of the executor */ executor.awaitTermination(1, TimeUnit.DAYS); /* * Write a message indicating the end of the program */ System.out.printf("Main: End of the program.\n");