Is there a way to to order the event handlers? I have multiple event handlers executing on node creation.
One of these handlers will move the node to a new location. Obviously that should happen after the others done their changes as otherwise they try to operate on an outdated path. Can I guarantee this? I thought about the service ranking but couldn't find anything that strengthen that. Alternatively I could schedule a job that moves the node in 5 seconds so the other handlers have enough time to execute. But that's a bit ugly. Any other ideas? Thanks, Markus
