public void checkAndNotify()

in fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationObserverImpl.java [309:321]


    public void checkAndNotify() {
    	synchronized(listenersSet) {
	        if (listeners.length == 0) {
	            return;
	        }

	        notifyOnStart();

	        checkEntries();

	        notifyOnStop();
    	}
    }