96979899100101102103104
controller2.startNonBlocking(BasicCrawler.class, 7); controller1.waitUntilFinish(); System.out.println("Crawler 1 is finished."); controller2.waitUntilFinish(); System.out.println("Crawler 2 is finished."); } }
8485868788899091
// Wait for 30 seconds Thread.sleep(30 * 1000); // Send the shutdown request and then wait for finishing controller.Shutdown(); controller.waitUntilFinish(); } }