public void onEvent()

in src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java [254:267]


        public void onEvent(final EventIterator it) {
            // Got a DELETE or ADD on root - schedule folders rescan if one
            // of our root folders is impacted
            try {
                while (it.hasNext()) {
                    final Event e = it.nextEvent();
                    logger.debug("Got event {}", e);

                    this.checkChanges(e.getPath());
                }
            } catch (final RepositoryException re) {
                logger.warn("RepositoryException in onEvent", re);
            }
        }