Hi Carsten,
our policy is to not include enhancements in patch releases, though we did not
always follow that policy in the past.
I'd rather include this in the next minor release because it also affects the
jackrabbit api module.
regards
marcel
Carsten Ziegeler wrote:
Thanks Marcel for applying the patch.
Is there any chance to get this into the 1.4.x branch as well?
Carsten
Marcel Reutegger (JIRA) wrote:
[
https://issues.apache.org/jira/browse/JCR-1672?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marcel Reutegger resolved JCR-1672.
-----------------------------------
Resolution: Fixed
Fix Version/s: 1.5
Applied patch in revision: 677261
Adding Event interface and isLocal()
------------------------------------
Key: JCR-1672
URL: https://issues.apache.org/jira/browse/JCR-1672
Project: Jackrabbit
Issue Type: Improvement
Components: jackrabbit-api, jackrabbit-core
Affects Versions: 1.4
Reporter: Carsten Ziegeler
Fix For: 1.5
Attachments: localeventlistener.patch
when a repository cluster is used, it seems that a common problem
many people have is to detect if an observation event is send because
of changes on the local instance or a remote instance of the cluster.
This is especially important if you want to do post processing of data
based on observation (the post processing should only be done by one
instance in the cluster).
A current solution is to cast the jcr event object to the EventImpl
of jackrabbit core which is obviously not a nice solution :)
So what about adding an event interface to jackrabbit api which
extends the jcr event interface and adds the isLocal() method?