5354555657585960616263
System.out.printf("System: %d files found.\n",results.size()); results=apps.join(); System.out.printf("Apps: %d files found.\n",results.size()); results=documents.join(); System.out.printf("Documents: %d files found.\n",results.size()); }
4344454647484950
if (task.isCompletedAbnormally()) { System.out.printf("Main: An exception has ocurred\n"); System.out.printf("Main: %s\n",task.getException()); } System.out.printf("Main: Result: %d",task.join()); } }
4950515253545556575859
/* * Wait for the finalization of the task */ task.join(); /* * Shutdown the pool */ pool.shutdown();