Hi, We have a requirement to listen on the node additions in a
particular jcr path and do some processing on the added nodes by calling
our custom java code whenever an event happens. The scenario is like,
say a node is added in AEM, the listener listens on the event and calls
custom java code to do further processing and until this processing is
complete, the listener is waiting. So the listener completes one event
and then moves on to the second. It's a while loop on the event
iterator. We wan...