Package org.nuxeo.ecm.core.event
Interface PostCommitEventListener
-
- All Known Subinterfaces:
PostCommitFilteringEventListener
- All Known Implementing Classes:
AbstractLongRunningListener,ACEStatusUpdatedListener,AsynchronousUnicityCheckListener,AuditEventLogger,BulkLifeCycleChangeListener,CheckedInCommentListener,DocumentRemovedCommentEventListener,DocumentRouteDeletedListener,DocumentRouteOrphanedListener,DocumentRoutingWorkflowInstancesCleanup,DummyAsyncRetryListener,EventCounterListener,LockExpirationListener,NotificationEventListener,NuxeoDriveGroupUpdateListener,NuxeoDriveVirtualEventLogger,OrphanVersionCleanupListener,OrphanVersionRemoverListener,PermissionGrantedNotificationListener,PictureViewsGenerationListener,PostCommitOperationEventListener,ScriptingPostCommitEventListener,StoredRenditionsCleanupListener,TaggedVersionListener,TemplateTypeBindingListener,UpdateThumbnailListener,WOPIDiscoveryRefreshListener
public interface PostCommitEventListener
A specialized event listener that is notified after the user operation is committed.This type of listener can be notified either in a synchronous or asynchronous mode.
- Author:
- Bogdan Stefanescu
- See Also:
EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleEvent(EventBundle events)Handles the set of events that were raised during the life of an user operation.
-
-
-
Method Detail
-
handleEvent
void handleEvent(EventBundle events)
Handles the set of events that were raised during the life of an user operation.The events are fired as a
BundleEventafter the transaction is committed.- Parameters:
events- the events to handle
-
-