Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution filemanager.core.listener.unicity--listener

This contribution is part of XML component filemanager.core.listener.unicity inside nuxeo-platform-filemanager-core-listener-10.10-HF31.jar /OSGI-INF/filemanager-unicity-event-contrib.xml

Documentation

Listen for Core event DOCUMENT_UPDATED and DOCUMENT_CREATED and check for existing duplicated blobs in the db

Extension Point

Extension point listener of component EventServiceComponent.

Registration Order

26
The registration order represents the order in which this contribution was registered on its target extention point. This will impact the override/merge behaviour when it is implemented on the target service, and is useful for proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).

Contributed Items

  • <listener async="true" class="org.nuxeo.ecm.platform.filemanager.core.listener.AsynchronousUnicityCheckListener" name="unicityListener" postCommit="true" priority="140">
          <event>documentCreated</event>
          <event>documentModified</event>
        </listener>

XML Source

<extension point="listener" target="org.nuxeo.ecm.core.event.EventServiceComponent">
    <documentation>
      Listen for Core event DOCUMENT_UPDATED and DOCUMENT_CREATED and check for existing duplicated blobs in the db
     </documentation>
    <listener async="true" class="org.nuxeo.ecm.platform.filemanager.core.listener.AsynchronousUnicityCheckListener" name="unicityListener" postCommit="true" priority="140">
      <event>documentCreated</event>
      <event>documentModified</event>
    </listener>
  </extension>