Package javax.jcr.observation
Interface EventListener
-
- All Known Implementing Classes:
AbstractOmniSearchHandler,ConsoleUtil,JcrObservationThrottle
public interface EventListenerAn event listener.An
EventListenercan be registered via theobject. Event listeners are notified asynchronously, and see events after they occur and the transaction is committed. An event listener only sees events for which the session that registered it has sufficient access rights.ObservationManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEvent(EventIterator events)This method is called when a bundle of events is dispatched.
-
-
-
Method Detail
-
onEvent
void onEvent(EventIterator events)
This method is called when a bundle of events is dispatched.- Parameters:
events- The event set received.
-
-