void notifyReloadNotificationListeners()

in core/src/main/java/org/apache/commons/jci2/core/listeners/ReloadingListener.java [145:151]


    void notifyReloadNotificationListeners() {
        for (final ReloadNotificationListener listener : notificationListeners) {
            log.debug("notifying listener " + listener);

            listener.handleNotification();
        }
    }