in src/main/java/org/apache/sling/installer/provider/installhook/OsgiInstallerHook.java [521:529]
public void waitUntilQuiet(long waitInSec) {
try {
while (System.currentTimeMillis() - lastEventTimestamp < waitInSec * 1000) {
Thread.sleep(100);
}
} catch (InterruptedException e) {
LOG.warn("Wait for OSGi events was interrupted");
}
}