in resume-api/resume-api-cassandraql/src/main/java/org/apache/camel/example/resume/cassandra/main/MainApp.java [83:96]
private static void waitForStop(Main main, CountDownLatch latch) {
try {
latch.await();
main.stop();
while (!main.isStopped()) {
Thread.sleep(1000);
}
System.exit(0);
} catch (InterruptedException e) {
System.exit(1);
}
}