Package org.nuxeo.ecm.core.event
Interface EventListener
-
- All Known Implementing Classes:
ACLUpdateListener
,BinaryMetadataSyncListener
,BinaryMetadataWorkListener
,BlobProviderDocumentsUpdateListener
,CheckBlobUpdateListener
,CheckedInDocumentListener
,CommentRemovedEventListener
,ContentCreationListener
,DeleteRelationsListener
,DeleteTaskForDeletedDocumentListener
,DigestComputer
,DirtyBlobListener
,DocUIDGeneratorListener
,DocumentRouteCreationListener
,DocumentRoutingEscalationListener
,DocumentRoutingSecurityListener
,DocumentRoutingUpdateCommentsInfoListener
,DocumentRoutingWorkflowDoneListener
,DomainEventProducerListener
,DomainEventsListener
,DublinCoreListener
,DummyBeforeModificationListener
,DummyUpdateBeforeModificationListener
,DuplicatedCollectionListener
,DuplicatedNameFixer
,ElasticSearchInlineListener
,EmptyNameFixer
,HtmlSanitizerListener
,IngestionTrigger
,InvalidateUserWorkspacesListener
,MailEventListener
,MimetypeIconUpdater
,MultiTenantListener
,NotificationCheckedInListener
,NuxeoDriveCacheInvalidationListener
,NuxeoDriveFileSystemDeletionListener
,NuxeoDriveSyncRootCopyListener
,NuxeoDriveSyncRootVersioningListener
,OperationEventListener
,PermissionListener
,PictureChangedListener
,ProbeScheduleListener
,ProxySubscriptionPropagationListener
,PublishRelationsListener
,QuotaStatsListener
,QuotaUserWorkspaceListener
,RemovedCollectionListener
,ResizeAvatarPictureListener
,RestoredCollectionListener
,RetentionExpiredFinderListener
,RoutingTaskDeletedListener
,RoutingTaskSecurityUpdaterListener
,ScriptingEventListener
,SnapshotableListener
,SoftDeleteCleanupListener
,StreamAuditEventListener
,SynchronousUnicityCheckListener
,TaskEndedEventListener
,TemplateDeletionGuard
,TemplateInitListener
,TenantAdministratorsListener
,ThreeDBatchCleanerListener
,ThreeDBatchGenerationListener
,TransientStorageGCTrigger
,UITypesConfigurationListener
,UnlockListener
,UpdateACEStatusListener
,VideoChangedListener
public interface EventListener
An event listener receives notifications from core components.Notifications are expressed as Event objects. This type of listeners are always invoked synchronously immediately after the event is raised.
- Author:
- Bogdan Stefanescu
- See Also:
for asynchronous listeners or post commit listeners
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleEvent(Event event)
Handle the given event.
-
-
-
Method Detail
-
handleEvent
void handleEvent(Event event)
Handle the given event. The listener can cancel the event by callingEvent.cancel()
- Parameters:
event
- the event
-
-